-
Notifications
You must be signed in to change notification settings - Fork 1
/
tsconfig.eslint.json
86 lines (86 loc) · 1.79 KB
/
tsconfig.eslint.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
{
"compilerOptions": {
"noEmit": true,
"module": "ESNext",
"target": "ESNext",
"lib": [
"es2020",
"es2019",
"es2018",
"es2017",
"es2016",
"es2015",
"dom"
],
"declaration": false,
"experimentalDecorators": true,
"forceConsistentCasingInFileNames": true,
"skipDefaultLibCheck": true,
"skipLibCheck": true,
"noImplicitReturns": true,
"noImplicitThis": true,
"importHelpers": true,
"esModuleInterop": true,
"allowSyntheticDefaultImports": false,
"isolatedModules": true,
"sourceMap": true,
"strict": false,
"noUnusedLocals": false,
"noUnusedParameters": false,
"noImplicitAny": true,
"resolveJsonModule": true,
"moduleResolution": "node",
"allowJs": false,
"jsx": "preserve",
"suppressImplicitAnyIndexErrors": true,
"strictNullChecks": false,
"plugins": [
{
"name": "typescript-styled-plugin",
"tags": [
"styled",
"css",
"sty"
],
"validate": true,
"lint": {
"vendorPrefix": "error",
"zeroUnits": "ignore",
"compatibleVendorPrefixes": "error",
"emptyRules": "warn",
"importStatement": "error",
"universalSelector": "warn",
"important": "error",
"float": "error"
}
}
],
},
"include": [
"dangerfile.ts",
"next-env.d.ts",
"globals.d.ts",
"pages/**/*",
"src/**/*",
"*.js",
"*.ts",
"**/__tests__/**/*"
],
"exclude": [
"**/stories/**/*",
"**/static",
"**/dist",
"**/.next",
"**/__assets/*",
"node_modules",
"build",
".storybook",
"scripts",
"acceptance-tests",
"webpack",
"jest",
"public",
".next",
".scratch"
]
}