-
Notifications
You must be signed in to change notification settings - Fork 1
/
.eslintrc.js
129 lines (126 loc) · 3.78 KB
/
.eslintrc.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
const path = require('path')
module.exports = {
root: true,
env: {
browser: true,
},
extends: [
'eslint:recommended',
'plugin:react/recommended',
'plugin:react-hooks/recommended',
'airbnb-base',
'airbnb-typescript',
// TODO: in a separate pull request enable and fix all classes sorting issues for tailwind
// 'plugin:tailwindcss/recommended',
],
plugins: ['@typescript-eslint', 'react-refresh'],
parser: '@typescript-eslint/parser',
parserOptions: {
ecmaVersion: 2022,
sourceType: 'module',
// project: path.join(__dirname, './tsconfig.json'),
project: path.join(__dirname, './src/webviews/tsconfig.json'),
createDefaultProgram: true,
},
overrides: [
{
files: ['**/*.spec.ts', '**/*.spec.tsx', '**/*.spec.ts'],
env: {
jest: true,
},
},
],
ignorePatterns: ['dist'],
rules: {
radix: 'off',
semi: ['error', 'never'],
'no-bitwise': ['error', { allow: ['|'] }],
'react/no-unused-prop-types': 'off',
'max-len': [
'error',
{
ignoreComments: true,
ignoreStrings: true,
ignoreRegExpLiterals: true,
code: 140,
},
],
'class-methods-use-this': 'off',
// https://github.com/vitejs/vite-plugin-react/tree/main/packages/plugin-react#consistent-components-exports
'react-refresh/only-export-components': ['warn'],
// A temporary hack related to IDE not resolving correct package.json
'import/no-extraneous-dependencies': 'off',
'import/prefer-default-export': 'off',
'import/no-cycle': 'off',
'import/no-named-as-default-member': 'off',
'import/no-named-as-default': 'off',
'no-unexpected-multiline': 'error',
'no-plusplus': 'off',
'no-return-await': 'off',
'no-underscore-dangle': 'off',
'no-useless-catch': 'off',
'no-console': ['error', { allow: ['warn', 'error', 'debug'] }],
'jsx-a11y/anchor-is-valid': 'off',
'jsx-a11y/no-access-key': 'off',
'max-classes-per-file': 'off',
'no-case-declarations': 'off',
'react-hooks/exhaustive-deps': 'off',
'react/jsx-props-no-spreading': 'off',
'react/require-default-props': 'off',
'react/jsx-one-expression-per-line': 'off',
'@typescript-eslint/no-unused-vars': 'warn',
'@typescript-eslint/no-shadow': 'off',
'@typescript-eslint/no-unused-expressions': 'off',
'@typescript-eslint/semi': ['error', 'never'],
'@typescript-eslint/no-use-before-define': 'off',
'implicit-arrow-linebreak': 'off',
'object-curly-newline': 'off',
'no-nested-ternary': 'off',
'no-param-reassign': ['error', { props: false }],
'default-param-last': 'off',
'@typescript-eslint/default-param-last': 'off',
'no-unsafe-optional-chaining': 'off',
'function-paren-newline': 'off',
'prefer-regex-literals': 'off',
'react/display-name': 'off',
'no-promise-executor-return': 'off',
'import/order': [
1,
{
groups: [
'external',
'builtin',
'internal',
'sibling',
'parent',
'index',
],
pathGroups: [
{
pattern: 'uiSrc/**',
group: 'internal',
position: 'after',
},
{
pattern: 'testSrc/**',
group: 'internal',
position: 'after',
},
{
pattern: 'src/**',
group: 'internal',
position: 'after',
},
{
pattern: '{.,..}/*.scss', // same directory only
// pattern: '{.,..}/**/*\.scss' // same & outside directories (e.g. import '../foo/foo.scss')
group: 'object',
position: 'after',
},
],
warnOnUnassignedImports: true,
pathGroupsExcludedImportTypes: ['builtin'],
},
],
},
}