-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.eslintrc
32 lines (32 loc) · 901 Bytes
/
.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
{
"parser": "@typescript-eslint/parser",
"extends": ["airbnb", "plugin:prettier/recommended", "prettier/react"],
"plugins": ["@typescript-eslint"],
"parserOptions": {
"project": "./tsconfig.json"
},
"env": {
"browser": true,
"commonjs": true,
"es6": true,
"jest": true,
"node": true
},
"rules": {
"import/no-extraneous-dependencies": ["off"],
"no-unused-vars": "warn",
"global-require": "off",
"no-use-before-define": "off",
"import/extensions": ["warn", "never"],
"import/prefer-default-export": "off",
"import/no-unresolved": "off",
"camelcase": "off",
"react/prop-types": [0],
"react/jsx-filename-extension": [
"warn",
{
"extensions": [".js", ".jsx", ".ts", ".tsx"]
}
]
}
}