-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy path.eslintrc.js
More file actions
31 lines (31 loc) · 766 Bytes
/
.eslintrc.js
File metadata and controls
31 lines (31 loc) · 766 Bytes
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
module.exports = {
"root": true,
"extends": [
"lxsmnsyc/typescript"
],
"parserOptions": {
"project": "./tsconfig.eslint.json"
},
"rules": {
"import/no-extraneous-dependencies": [
"error",
{
"devDependencies": [
"**/*.test.tsx",
"vite.config.ts"
]
}
],
"camelcase": "off",
"react/button-has-type": "off",
"react/destructuring-assignment": "off",
"react/jsx-props-no-spreading": "off",
"react/require-default-props": "off",
"react-hooks/rules-of-hooks": "off",
"react/jsx-no-undef": "off",
"react/prop-types": "off",
"jsx-a11y/anchor-is-valid": "off",
"react/no-unknown-property": "off",
"jsx-a11y/label-has-associated-control": "off"
}
};