We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 92b5cc6 commit e640795Copy full SHA for e640795
.eslintrc.cjs
@@ -1,12 +1,29 @@
1
module.exports = {
2
+ env: {
3
+ es2021: true,
4
+ node: true,
5
+ },
6
extends: ["eslint:recommended", "plugin:@typescript-eslint/recommended"],
7
+ overrides: [
8
+ {
9
10
11
12
+ files: [".eslintrc.{js,cjs}"],
13
+ parserOptions: {
14
+ sourceType: "script",
15
16
17
+ ],
18
parser: "@typescript-eslint/parser",
19
20
+ ecmaVersion: "latest",
21
+ sourceType: "module",
22
23
plugins: ["@typescript-eslint"],
- root: true,
24
rules: {
25
"@typescript-eslint/no-explicit-any": "off",
26
+ "@typescript-eslint/no-var-requires": "off",
27
},
- global: {
- test: true,
- },
28
+ ignorePatterns: ["tests/*", "dev-kit/*", "dist/*"],
29
};
0 commit comments