-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path.eslintrc.cjs
88 lines (88 loc) · 2.34 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
module.exports = {
root: true,
env: { browser: true, es2020: true },
extends: [
'airbnb',
'airbnb-typescript',
'airbnb/hooks',
'eslint:recommended',
'plugin:react/recommended',
'plugin:@typescript-eslint/recommended-type-checked',
'plugin:prettier/recommended',
],
ignorePatterns: [
'dist',
'.eslintrc.cjs',
'tailwind/index.css',
'tailwind.config.ts',
'vite.config.ts',
'mapbox-gl-indoorequal',
'native',
'**/*.svg',
'**/*.json',
'global.d.ts',
'vite-env.d.ts',
'decorators/**',
],
parser: '@typescript-eslint/parser',
parserOptions: {
ecmaVersion: 'latest',
sourceType: 'module',
project: ['./tsconfig.json', './tsconfig.node.json'],
},
plugins: ['react', '@typescript-eslint', 'react-refresh', 'prettier'],
rules: {
'no-void': 'off',
'class-methods-use-this': 'off',
'react-refresh/only-export-components': [
'warn',
{ allowConstantExport: true },
],
'import/no-extraneous-dependencies': [
'error',
{
devDependencies: false,
},
],
'import/extensions': ['off'],
'prettier/prettier': [
'error',
{
endOfLine: 'auto',
},
],
'func-style': ['error', 'declaration', { allowArrowFunctions: true }],
'no-underscore-dangle': ['error', { allowAfterThis: true }],
'no-plusplus': ['error', { allowForLoopAfterthoughts: true }],
'react/jsx-props-no-spreading': 'off',
'react/function-component-definition': [
'error',
{
namedComponents: 'arrow-function',
unnamedComponents: 'arrow-function',
},
],
'react/require-default-props': 'off',
'jsx-a11y/click-events-have-key-events': 'off', // since the app is mobile-first
'jsx-a11y/no-noninteractive-element-interactions': 'off',
'jsx-a11y/no-static-element-interactions': 'off',
'jsx-a11y/control-has-associated-label': 'off',
'react/destructuring-assignment': 'off',
'no-use-before-define': 'off', // bugs out
'@typescript-eslint/no-use-before-define': 'off',
'import/extensions': [
'error',
'ignorePackages',
{
'': 'never',
js: 'never',
jsx: 'never',
ts: 'never',
tsx: 'never',
},
],
'@typescript-eslint/no-namespace': 'off',
radix: 'off',
'no-restricted-globals': 'off',
},
};