-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy patheslint.config.js
147 lines (146 loc) · 4.28 KB
/
eslint.config.js
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
140
141
142
143
144
145
146
147
import js from '@eslint/js';
import prettier from 'eslint-config-prettier';
import svelte from 'eslint-plugin-svelte';
import globals from 'globals';
import ts from 'typescript-eslint';
export default ts.config(
js.configs.recommended,
prettier,
...ts.configs.recommended,
...ts.configs.recommendedTypeChecked,
...ts.configs.stylisticTypeChecked,
...svelte.configs['flat/recommended'],
...svelte.configs['flat/prettier'],
{
languageOptions: {
globals: {
...globals.browser,
...globals.node,
},
parserOptions: {
projectService: './tsconfig.json',
programs: false,
extraFileExtensions: ['.svelte'],
tsconfigRootDir: import.meta.dirname,
},
},
},
{
files: ['**/*.svelte'],
languageOptions: {
parserOptions: {
parser: ts.parser,
extraFileExtensions: ['.svelte'],
svelteFeatures: {
experimentalGenerics: true,
},
},
},
},
{
files: ['**/*.config.*'],
extends: [ts.configs.disableTypeChecked],
},
{
ignores: [
'build/',
'.svelte-kit/',
'dist/',
'.vercel/',
'$houdini/',
'src/lib/graphql/schema.graphql',
'vite.config.ts.timestamp-*',
'vitest.config.ts.timestamp-*',
'setupTest.ts',
'setupPlaywright.ts',
'*.config.js',
'*.config.ts',
'src/lib/db/database.types.ts',
],
},
{
rules: {
'@typescript-eslint/no-inferrable-types': 'off',
'@typescript-eslint/no-explicit-any': 'off',
'@typescript-eslint/no-unused-expressions': 'off',
'@typescript-eslint/no-unused-vars': [
'warn',
{
argsIgnorePattern: '^_',
varsIgnorePattern: '^_',
caughtErrorsIgnorePattern: '^_',
},
],
// Type-aware
'@typescript-eslint/no-unnecessary-condition': 'off',
'@typescript-eslint/no-unsafe-assignment': 'off',
'@typescript-eslint/no-unsafe-member-access': 'off',
'@typescript-eslint/no-unsafe-return': 'off',
'@typescript-eslint/no-unsafe-call': 'off',
'@typescript-eslint/no-floating-promises': 'off',
'@typescript-eslint/no-unsafe-argument': 'off',
'@typescript-eslint/require-await': 'off',
'@typescript-eslint/restrict-template-expressions': 'off',
// '@typescript-eslint/no-misused-promises': ['warn', { checksVoidReturn: false }],
'@typescript-eslint/no-misused-promises': 'off',
'@typescript-eslint/prefer-promise-reject-errors': 'off',
// Stylistic
'@typescript-eslint/dot-notation': 'off',
'@typescript-eslint/consistent-type-definitions': 'off',
'@typescript-eslint/non-nullable-type-assertion-style': 'off',
'@typescript-eslint/prefer-nullish-coalescing': 'off',
'@typescript-eslint/prefer-regexp-exec': 'off',
// Other
'@typescript-eslint/naming-convention': [
'warn',
{
selector: 'default',
format: ['camelCase', 'snake_case'],
leadingUnderscore: 'allow',
trailingUnderscore: 'allow',
},
{
selector: 'variable',
format: ['camelCase', 'UPPER_CASE'],
leadingUnderscore: 'allow',
trailingUnderscore: 'allow',
},
{
selector: 'variable',
modifiers: ['exported'],
format: ['camelCase', 'PascalCase'],
},
{
selector: 'typeLike',
format: ['PascalCase'],
},
{
selector: 'import',
format: ['camelCase', 'PascalCase'],
},
{
selector: 'enumMember',
format: null,
},
{
selector: ['objectLiteralProperty', 'objectLiteralMethod'],
format: null,
},
],
'no-console': ['warn', { allow: ['warn', 'error'] }],
'eol-last': 'warn',
'no-trailing-spaces': 'warn',
'no-tabs': 'error',
'prefer-template': 'warn',
'no-var': 'warn',
'prefer-const': 'warn',
'no-const-assign': 'error',
'no-irregular-whitespace': 'warn',
quotes: ['warn', 'single', { avoidEscape: true }],
curly: ['warn', 'multi-line'],
'no-debugger': 'warn',
'func-style': ['warn', 'expression', { allowArrowFunctions: true }],
'svelte/no-at-html-tags': 'off',
},
},
);