-
Notifications
You must be signed in to change notification settings - Fork 64
/
Copy patheslint.config.cjs
68 lines (65 loc) · 2.06 KB
/
eslint.config.cjs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
const globals = require("globals");
const parser = require("@typescript-eslint/parser");
const eslintPlugin = require("@typescript-eslint/eslint-plugin");
const eslintRc = require("@eslint/eslintrc");
const compat = new eslintRc.FlatCompat({
baseDirectory: __dirname,
});
module.exports = [
{
ignores: ["src/types/generated/**", "dist/**", "node_modules/**", "**/dist/**", "**/node_modules/**"],
},
{
files: ["*.ts", "*.tsx"],
},
...compat.extends("airbnb-base"),
...compat.extends("prettier"),
{
languageOptions: {
parser: parser,
parserOptions: {
tsconfigRootDir: __dirname,
project: ["tsconfig.json", "examples/*/tsconfig.json"],
ecmaVersion: "latest",
sourceType: "module",
},
ecmaVersion: "latest",
sourceType: "module",
globals: {
...globals.browser,
...globals.es2021,
...globals.node,
},
},
plugins: {
"@typescript-eslint": eslintPlugin,
},
rules: {
quotes: ["error", "double"],
"max-len": ["error", 140],
"import/extensions": ["error", "never"],
"import/no-commonjs": ["error", { allowRequire: false, allowPrimitiveModules: false }],
"import/no-extraneous-dependencies": [
"error",
{ devDependencies: true, optionalDependencies: true, peerDependencies: true },
],
"import/no-useless-path-segments": ["error", { noUselessIndex: true }],
"max-classes-per-file": ["error", 10],
"import/prefer-default-export": "off",
"object-curly-newline": "off",
// Replacing airbnb rule with following, to re-enable "ForOfStatement"
"no-restricted-syntax": ["error", "ForInStatement", "LabeledStatement", "WithStatement"],
"no-use-before-define": "off",
"no-unused-vars": "off",
"@typescript-eslint/no-use-before-define": ["error", { functions: false, classes: false }],
"@typescript-eslint/no-unused-vars": ["error"],
},
settings: {
"import/resolver": {
node: {
extensions: [".js", ".ts"],
},
},
},
},
];