-
-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy patheslint.config.js
57 lines (56 loc) · 1.63 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
import globals from 'globals'
import js from '@eslint/js'
import ts from 'typescript-eslint'
import astro from 'eslint-plugin-astro'
import prettier from 'eslint-config-prettier'
export default ts.config(
{
// https://eslint.org/docs/latest/use/configure/configuration-files#globally-ignoring-files-with-ignores
ignores: ['dist/', '.astro/', '.local/'],
},
{
// https://eslint.org/docs/latest/use/configure/language-options
languageOptions: {
ecmaVersion: 'latest',
sourceType: 'module',
globals: {
...globals.browser,
...globals.node,
},
},
},
// https://eslint.org/docs/latest/use/configure/configuration-files#using-predefined-configurations
js.configs.recommended,
...ts.configs.recommended,
...ts.configs.stylistic,
...astro.configs.recommended,
...astro.configs['jsx-a11y-recommended'],
prettier,
{
rules: {
// https://typescript-eslint.io/rules/no-unused-vars/
'@typescript-eslint/no-unused-vars': [
'error',
{
args: 'all',
argsIgnorePattern: '^_',
caughtErrors: 'all',
caughtErrorsIgnorePattern: '^_',
destructuredArrayIgnorePattern: '^_',
varsIgnorePattern: '^_',
ignoreRestSiblings: true,
},
],
// https://typescript-eslint.io/rules/triple-slash-reference/
'@typescript-eslint/triple-slash-reference': [
'error',
{ path: 'always' },
],
// https://eslint.org/docs/latest/rules/no-unused-expressions
'@typescript-eslint/no-unused-expressions': [
'error',
{ allowTernary: true },
],
},
}
)