-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy path.eslintrc.json
139 lines (139 loc) · 3.18 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
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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
{
"plugins": ["@typescript-eslint", "prettier", "react", "react-hooks"],
"extends": [
"eslint:recommended",
"plugin:@typescript-eslint/eslint-recommended",
"plugin:@typescript-eslint/recommended",
"plugin:lit/recommended",
"prettier",
"plugin:prettier/recommended",
"plugin:react/recommended",
"plugin:react-hooks/recommended"
],
"settings": {
"react": {
"version": "detect"
}
},
"ignorePatterns": ["*.d.ts", "node_modules/", "dist/"],
"rules": {
"consistent-return": "error",
"no-console": [
"error",
{
"allow": ["debug", "info", "warn", "error"]
}
],
"prettier/prettier": "error",
"sort-keys": "off",
"no-duplicate-imports": "error",
"no-restricted-imports": [
"error",
{
"patterns": ["@malloydata/malloy/src/*"],
"paths": [
{
"name": "lodash",
"message": "Import [module] from lodash/[module] instead"
}
]
}
],
"no-throw-literal": "error",
"@typescript-eslint/consistent-type-imports": [
"error",
{"prefer": "no-type-imports"}
],
"@typescript-eslint/no-empty-function": "off",
"@typescript-eslint/no-non-null-assertion": "off",
"@typescript-eslint/no-unused-vars": [
"error",
{"argsIgnorePattern": "^_", "varsIgnorePattern": "^_"}
],
"@typescript-eslint/parameter-properties": [
"error",
{"prefer": "parameter-property"}
]
},
"overrides": [
{
"files": ["**/*.ts"],
"parser": "@typescript-eslint/parser",
"parserOptions": {
"warnOnUnsupportedTypeScriptVersion": false,
"project": ["./tsconfig.json"]
},
"rules": {"@typescript-eslint/no-floating-promises": "error"}
},
{
"files": ["src/server/**"],
"rules": {
"no-restricted-imports": [
"error",
{
"patterns": ["**/extension/**", "vscode"]
}
]
}
},
{
"files": ["src/worker/**"],
"rules": {
"no-restricted-imports": [
"error",
{
"patterns": ["**/extension/**", "**/server/**", "vscode"]
}
]
}
},
{
"files": ["src/extension/**"],
"rules": {
"no-restricted-imports": [
"error",
{
"patterns": ["**/worker/**", "**/server/**"]
}
]
}
},
{
"files": ["src/common/**"],
"rules": {
"no-restricted-imports": [
"error",
{
"patterns": ["vscode"]
}
]
}
},
{
"files": ["**/browser/**"],
"rules": {
"no-restricted-imports": [
"error",
{
"patterns": ["fs", "path"]
}
]
}
},
{
"files": ["scripts/**", "test/**", "integration/**"],
"rules": {
"node/no-unpublished-import": "off",
"no-console": "off",
"no-process-exit": "off"
}
},
{
"files": ["integration/**"],
"parserOptions": {
"warnOnUnsupportedTypeScriptVersion": false,
"project": ["./tsconfig.integration.json"]
}
}
]
}