This repository has been archived by the owner on Dec 21, 2024. It is now read-only.
forked from lokkeestudios/lokkeestudios
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.eslintrc.cjs
103 lines (102 loc) · 3.12 KB
/
.eslintrc.cjs
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
/** @type {import('eslint').Linter.config} */
const config = {
env: {
node: true,
es2022: true,
browser: true,
},
plugins: ['prettier'],
extends: [
'eslint:recommended',
'plugin:astro/recommended',
'plugin:astro/jsx-a11y-recommended',
'prettier',
],
parserOptions: {
ecmaVersion: 'latest',
sourceType: 'module',
},
overrides: [
{
files: ['*.astro'],
parser: 'astro-eslint-parser',
parserOptions: {
parser: '@typescript-eslint/parser',
extraFileExtensions: ['.astro'],
},
rules: {},
},
{
files: ['*.ts'],
plugins: ['react', '@typescript-eslint'],
parser: '@typescript-eslint/parser',
parserOptions: {
tsconfigRootDir: __dirname,
project: ['./tsconfig.json'],
},
extends: [
'plugin:@typescript-eslint/recommended',
'plugin:@typescript-eslint/recommended-requiring-type-checking',
],
rules: {
'@typescript-eslint/no-floating-promises': ['error', { ignoreVoid: true }],
'@typescript-eslint/no-unused-vars': [
'error',
{ argsIgnorePattern: '^_', destructuredArrayIgnorePattern: '^_' },
],
'@typescript-eslint/no-non-null-assertion': 'off',
},
},
{
files: ['*.d.ts'],
rules: {
'@typescript-eslint/triple-slash-reference': 'off',
},
},
{
files: ['*.tsx'],
plugins: ['react', '@typescript-eslint'],
parser: '@typescript-eslint/parser',
parserOptions: {
tsconfigRootDir: __dirname,
project: ['./tsconfig.json'],
},
extends: [
'eslint:recommended',
'plugin:react/recommended',
'plugin:react/jsx-runtime',
'plugin:react-hooks/recommended',
'plugin:jsx-a11y/recommended',
'plugin:@typescript-eslint/recommended',
'plugin:@typescript-eslint/recommended-requiring-type-checking',
],
rules: {
'react/react-in-jsx-scope': 'off',
'react/jsx-filename-extension': [1, { extensions: ['.astro', '.tsx'] }],
'react/require-default-props': ['error', { functions: 'defaultArguments' }],
'react/jsx-props-no-spreading': 'warn',
'react/no-array-index-key': 'warn',
'@typescript-eslint/no-floating-promises': ['error', { ignoreVoid: true }],
'@typescript-eslint/no-unused-vars': [
'error',
{ argsIgnorePattern: '^_', destructuredArrayIgnorePattern: '^_' },
],
'@typescript-eslint/no-non-null-assertion': 'off',
},
},
{
// Defines the configuration for `<script>` tags
// Inlined scripts in astro files' `<script>` tags are assigned a virtual file name with the `.js` extension.
files: ['**/*.astro/*.js', '*.astro/*.js'],
parser: '@typescript-eslint/parser',
},
],
rules: {
'no-plusplus': ['error', { allowForLoopAfterthoughts: true }],
'no-void': ['error', { allowAsStatement: true }],
'consistent-return': ['error', { treatUndefinedAsUnspecified: false }],
'no-underscore-dangle': 'off',
'prettier/prettier': 'error',
},
};
module.exports = config;