forked from flexpool/frontend
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.eslintrc
36 lines (35 loc) · 1.06 KB
/
.eslintrc
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
// {
// "extends": ["next", "eslint:recommended", "plugin:@typescript-eslint/recommended"],
// "plugins": ["react-hooks", "@typescript-eslint"],
// "rules": {
// "react/display-name": "off",
// "react/jsx-max-props-per-line": [1, { "maximum": 1 }],
// "eqeqeq": "error",
// "no-console": "warn",
// "@typescript-eslint/explicit-module-boundary-types": "off",
// "@typescript-eslint/explicit-function-return-type": "off",
// "@typescript-eslint/no-explicit-any": "warn",
// "@typescript-eslint/no-unused-vars": "warn",
// "react/react-in-jsx-scope": "off",
// "react-hooks/rules-of-hooks": "warn",
// "react-hooks/exhaustive-deps": "warn"
// },
// "parser": "@typescript-eslint/parser",
// "parserOptions": {
// "ecmaVersion": 6,
// "sourceType": "module"
// },
// "env": {
// "browser": true,
// "node": true,
// "es6": true,
// "jest": true
// },
// "ignorePatterns": ["node_modules", "build", "dist", "public"]
// }
{
"extends": "next",
"rules": {
"react/display-name": "off"
}
}