forked from Vivek205/snet-dapp-monorepo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.eslintrc.json
31 lines (31 loc) · 1.2 KB
/
.eslintrc.json
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
{
"extends": ["react-app", "eslint:recommended"],
"parser": "babel-eslint",
"plugins": ["react", "prettier", "react-hooks"],
"rules": {
"prettier/prettier": [
"error",
{ "singleQuote": false, "semi": true, "max-len": { "code": 120, "ignoreUrls": true }, "tab-width": 2 }
],
"lines-between-class-members": ["error", "always"],
"jsx-a11y/anchor-is-valid": "off",
"prefer-arrow-callback": ["error", { "allowNamedFunctions": false, "allowUnboundThis": false }],
"no-empty-function": ["error"],
"react-hooks/rules-of-hooks": "error",
"react-hooks/exhaustive-deps": "error",
"react/self-closing-comp": ["error", { "component": true, "html": true }],
"react/jsx-curly-brace-presence": ["warn", { "props": "never", "children": "never" }],
"no-extra-boolean-cast": "off",
"no-unused-vars": ["error", { "vars": "all", "args": "all", "argsIgnorePattern": "^_" }],
"react/jsx-key": "error",
"no-useless-computed-key": "error",
"object-shorthand": "error",
"require-await": "warn",
"eqeqeq": "warn",
"no-useless-catch": "off",
"no-console": "error",
"no-debugger": "error",
"jsx-a11y/alt-text": "error",
"no-unreachable": "error"
}
}