-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
.eslintrc.json
36 lines (36 loc) · 1.15 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
32
33
34
35
36
{
"extends": [
"eslint:recommended",
"airbnb",
"prettier",
"plugin:import/react",
"plugin:prettier/recommended",
"plugin:@typescript-eslint/recommended"
],
"env": {"browser": true},
"parser": "@typescript-eslint/parser",
"plugins": ["@typescript-eslint", "prettier"],
"ignorePatterns": "webpack.config.js",
"settings": {
"import/resolver": {
"node": {
"extensions": [".js",".jsx", ".ts", ".tsx"]
}
}
},
"rules": {
"prettier/prettier": "error",
"import/extensions": ["error", "never", { "css": "always" }],
"import/no-unresolved": ["error", { "ignore": ["photoshop$", "uxp$"] }],
"no-use-before-define": "off",
"@typescript-eslint/no-use-before-define": ["error"],
"@typescript-eslint/indent": ["error", 2],
"@typescript-eslint/no-unused-vars": "error",
"@typescript-eslint/no-explicit-any": "error",
"@typescript-eslint/no-namespace": "off",
"@typescript-eslint/explicit-module-boundary-types": "off",
"react/require-default-props": "off",
"react/jsx-filename-extension": [1, { "extensions": [".jsx", ".tsx"] }],
"react/destructuring-assignment": "off"
}
}