-
Notifications
You must be signed in to change notification settings - Fork 158
/
.eslintrc.json
49 lines (49 loc) · 1.24 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
{
"root": true,
"env": {
"browser": true,
"commonjs": true,
"es6": true,
"node": true,
"jest": true
},
"parser": "@typescript-eslint/parser",
"plugins": ["@typescript-eslint", "prettier", "turbo"],
"extends": [
"eslint:recommended",
"plugin:@typescript-eslint/recommended",
"prettier"
],
"overrides": [
{
"files": ["test/**"],
"plugins": ["jest"],
"extends": ["plugin:jest/recommended"],
"rules": {
"jest/no-disabled-tests": "error"
}
}
],
"parserOptions": {
"ecmaVersion": 8
},
"ignorePatterns": ["node_modules/", "dist/", ".turbo/"],
"rules": {
"prettier/prettier": "error",
"curly": "error",
// This rule needs to be disabled otherwise ESLint will error out
// on things like TypeScript enums or function types
"no-unused-vars": "off",
"@typescript-eslint/no-unused-vars": [
"error",
{
"argsIgnorePattern": "^_",
"varsIgnorePattern": "^_"
}
],
"@typescript-eslint/no-explicit-any": "warn",
// Since none of our environment variables affect the build output, we're safe
// to ignore any errors related to undeclared environment variables
"turbo/no-undeclared-env-vars": "warn"
}
}