forked from mondaycom/vibe
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.eslintrc.js
126 lines (125 loc) · 3.58 KB
/
.eslintrc.js
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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
const commonRules = {
"react/display-name": "off",
"object-curly-newline": "off",
"no-debugger": "error",
"global-require": "off",
"no-unused-expressions": "off",
"react/forbid-foreign-prop-types": "off",
"no-console": "off",
"consistent-return": "off",
"no-use-before-define": "off",
"one-var": "off",
"default-case": "off",
"func-names": "off",
"react/sort-comp": "off",
"class-methods-use-this": "off",
radix: "off",
"no-underscore-dangle": "off",
"import/prefer-default-export": "off",
"no-plusplus": "off",
"react/react-in-jsx-scope": 0,
"react/no-danger": "error",
"react/jsx-one-expression-per-line": "off",
"react/prop-types": 0,
"react/forbid-prop-types": "off",
"react/function-component-definition": "off",
"default-param-last": "off",
"react/require-default-props": ["error"],
"jsx-a11y/anchor-is-valid": ["error"],
"react/jsx-props-no-spreading": 0,
"react/jsx-filename-extension": ["error", { extensions: [".js", ".jsx", ".ts", ".tsx"] }],
"jsx-a11y/no-static-element-interactions": "off",
"jsx-a11y/alt-text": "error",
"jsx-a11y/no-noninteractive-element-interactions": [
"error",
{
required: {
some: ["nesting", "id"]
},
handlers: ["onClick", "onMouseDown", "onMouseUp", "onKeyPress", "onKeyDown", "onKeyUp"]
}
],
"jsx-a11y/role-has-required-aria-props": "error",
"jsx-a11y/click-events-have-key-events": "error",
"jsx-a11y/label-has-associated-control": "off",
"react/default-props-match-prop-types": "error",
"jsx-a11y/aria-activedescendant-has-tabindex": "error",
"react/button-has-type": "error",
"jsx-a11y/interactive-supports-focus": "error",
"jsx-a11y/no-noninteractive-tabindex": "error",
"react/jsx-boolean-value": "off",
"arrow-parens": "off",
"implicit-arrow-linebreak": "off",
"import/no-extraneous-dependencies": ["error", { devDependencies: true }]
};
const commonPlugins = ["import", "react", "jsx-a11y", "json", "markdown", "jest"];
const commonExtends = ["plugin:react/recommended", "plugin:react-hooks/recommended", "plugin:prettier/recommended"];
module.exports = {
overrides: [
{
files: ["*.jest.js", "jest.setup.js", "jest.init.js"],
env: {
jest: true,
"jest/globals": true
}
},
{
files: [
"webpack.config.js",
"plopfile.js",
"babel.config.js",
".eslintrc.js",
"scripts/**/*.js",
"webpack/**/*.js",
"__mocks__/**/*.js",
"plop/**/*.js"
],
env: {
node: true
}
},
{
files: ["*.ts", "*.tsx"],
parser: "@typescript-eslint/parser",
extends: [
...commonExtends,
"plugin:@typescript-eslint/eslint-recommended",
"plugin:@typescript-eslint/recommended"
],
plugins: [...commonPlugins, "@typescript-eslint"],
rules: {
...commonRules,
"@typescript-eslint/ban-ts-comment": ["warn"],
"no-unused-vars": "off",
"react/require-default-props": "off",
"@typescript-eslint/no-unused-vars": ["error", { argsIgnorePattern: "^_", varsIgnorePattern: "^_" }],
"@typescript-eslint/no-empty-function": "off"
}
}
],
env: {
browser: true,
es2021: true
},
settings: {
jest: {
version: 27
},
react: {
version: "detect"
}
},
extends: [...commonExtends, "eslint:recommended"],
parserOptions: {
ecmaFeatures: {
jsx: true
},
ecmaVersion: 13,
sourceType: "module"
},
plugins: [...commonPlugins],
rules: {
...commonRules,
"no-unused-vars": ["error", { argsIgnorePattern: "^_" }]
}
};