forked from poinswap-team/poinswap-web
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.eslintrc
66 lines (66 loc) · 1.94 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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
{
"extends": [
"airbnb",
"airbnb-typescript",
"airbnb/hooks",
"@remix-run/eslint-config",
"@remix-run/eslint-config/node",
"@remix-run/eslint-config/jest",
"plugin:import/errors",
"plugin:import/warnings",
"plugin:import/typescript",
"prettier"
],
"plugins": ["react", "@typescript-eslint", "unused-imports"],
"parser": "@typescript-eslint/parser",
"parserOptions": {
"project": "./tsconfig.json"
},
"rules": {
"@typescript-eslint/comma-dangle": ["error", "only-multiline"],
"@typescript-eslint/no-unused-vars": ["warn"],
"@typescript-eslint/no-throw-literal": ["off"],
"arrow-body-style": ["error", "always"],
"comma-dangle": ["error", "only-multiline"],
"import/no-cycle": "off",
"import/prefer-default-export": "off",
"no-console": ["warn", { "allow": ["info", "warn", "error"] }],
"react/function-component-definition": "off",
"react/jsx-filename-extension": [1, { "extensions": [".tsx", ".ts"] }],
"react/jsx-props-no-spreading": "off",
"react/no-unescaped-entities": "off",
"react/require-default-props": "off",
"unused-imports/no-unused-imports": "off", // ~> @ts-eslint/no-unused-vars
"import/order": [
"warn",
{
"alphabetize": {
"caseInsensitive": true,
"order": "asc"
},
"groups": [
"external",
["index", "sibling", "parent"],
"internal",
["type", "unknown", "object"]
],
"newlines-between": "always",
"pathGroups": [
{
"group": "object",
"pattern": "*.css",
"patternOptions": { "matchBase": true },
"position": "after"
},
{
"group": "object",
"pattern": "*.svg",
"patternOptions": { "matchBase": true },
"position": "after"
}
],
"warnOnUnassignedImports": true
}
]
}
}