diff --git a/eslint.config.mjs b/eslint.config.mjs new file mode 100644 index 0000000..59129c8 --- /dev/null +++ b/eslint.config.mjs @@ -0,0 +1,7 @@ +// eslint.config.js +// See "Globally ignoring files with ignores" at https://eslint.org/docs/latest/use/configure/configuration-files +export default [ + { + ignores: ["**/.eslintrc.js", "admin/words.js"] + } +]; \ No newline at end of file diff --git a/tsconfig.json b/tsconfig.json index e2f7f2d..6f8e844 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -29,7 +29,7 @@ "include": [ "**/*.js", "**/*.d.ts" - ], +, "eslint.config.mjs" ], "exclude": [ "node_modules/**", "widgets/**"