This repository has been archived by the owner on Apr 19, 2021. It is now read-only.
generated from babichjacob/sapper-postcss-template
-
Notifications
You must be signed in to change notification settings - Fork 14
/
.eslintrc.json
86 lines (86 loc) · 1.38 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
{
"extends": [
"eslint:recommended",
"airbnb-base"
],
"parserOptions": {
"ecmaVersion": 11,
"sourceType": "module",
"project": "./tsconfig.json"
},
"env": {
"node": true,
"browser": true,
"es2020": true
},
"rules": {
"class-methods-use-this": "off",
"import/extensions": [
"error",
"ignorePackages",
{
"js": "never",
"ts": "never"
}
],
"import/prefer-default-export": "off",
"import/no-extraneous-dependencies": "off",
"indent": [
"error",
"tab"
],
"no-console": "off",
"no-tabs": [
"error",
{
"allowIndentationTabs": true
}
],
"no-unused-vars": [
"error",
{
"argsIgnorePattern": "^_",
"varsIgnorePattern": "^_"
}
],
"quotes": [
"error",
"double"
]
},
"overrides": [
{
"files": [
"*.ts"
],
"parser": "@typescript-eslint/parser",
"extends": [
"plugin:import/typescript",
"plugin:@typescript-eslint/recommended"
],
"plugins": [
"@typescript-eslint"
],
"rules": {
"@typescript-eslint/ban-ts-comment": "off"
}
},
{
"files": [
"*.svelte"
],
"plugins": [
"svelte3"
],
"processor": "svelte3/svelte3",
"rules": {
"import/first": "off",
"import/no-duplicates": "off",
"import/no-mutable-exports": "off",
"import/no-mutable-unresolved": "off",
"no-undef": "off",
"no-unused-vars": "off"
}
}
]
}