Skip to content

Commit

Permalink
build: update dependencies and eslint config
Browse files Browse the repository at this point in the history
  • Loading branch information
jordanjones243 authored and jason-capsule42 committed Jul 26, 2024
1 parent d69c8ea commit f46f9cd
Show file tree
Hide file tree
Showing 5 changed files with 673 additions and 515 deletions.
244 changes: 0 additions & 244 deletions .eslintrc.cjs

This file was deleted.

14 changes: 14 additions & 0 deletions eslint.config.mjs
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
import path from "node:path";
import { fileURLToPath } from "node:url";
import js from "@eslint/js";
import { FlatCompat } from "@eslint/eslintrc";

const __filename = fileURLToPath(import.meta.url);
const __dirname = path.dirname(__filename);
const compat = new FlatCompat({
baseDirectory: __dirname,
recommendedConfig: js.configs.recommended,
allConfig: js.configs.all
});
export default [...compat.extends("@aurodesignsystem/eslint-config")];

Loading

0 comments on commit f46f9cd

Please sign in to comment.