forked from zammad/zammad
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.eslintrc.js
225 lines (199 loc) · 7.04 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
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
// Copyright (C) 2012-2023 Zammad Foundation, https://zammad-foundation.org/
const path = require('path')
module.exports = {
root: true,
env: {
browser: true,
node: true,
},
plugins: [
'@typescript-eslint',
'vue',
'prettier',
'sonarjs',
'security',
'zammad',
],
extends: [
'airbnb-base',
'plugin:vue/vue3-recommended',
'plugin:@typescript-eslint/eslint-recommended',
'plugin:@typescript-eslint/recommended',
'plugin:prettier/recommended',
'@vue/prettier',
'@vue/typescript/recommended',
'prettier',
'plugin:sonarjs/recommended',
'plugin:security/recommended',
],
rules: {
'zammad/zammad-copyright': 'error',
'zammad/zammad-detect-translatable-string': 'error',
'zammad/zammad-tailwind-ltr': 'error',
'no-console': process.env.NODE_ENV === 'production' ? 'error' : 'off',
'no-debugger': process.env.NODE_ENV === 'production' ? 'error' : 'off',
'consistent-return': 'off', // allow implicit return
// Loosen AirBnB's strict rules a bit to allow 'for .. of'
'no-restricted-syntax': [
'error',
'ForInStatement',
// "ForOfStatement", // We want to allow this
'LabeledStatement',
'WithStatement',
],
'no-underscore-dangle': 'off',
'no-param-reassign': 'off',
'func-style': ['error', 'expression'],
'no-restricted-imports': 'off',
// Disable the following rule, because it's not relevant for the tool chain and test envoirment.
'import/no-extraneous-dependencies': [
'error',
{
devDependencies: [
'histoire.config.ts',
'tailwind.config.js',
'vite.config.*',
'app/frontend/build/**',
'app/frontend/**/*.spec.*',
'app/frontend/**/__tests__/**/*',
'app/frontend/tests/**/*',
'app/frontend/**/*.stories.ts',
'app/frontend/**/*.story.vue',
'app/frontend/**/*.story.vue',
'app/frontend/stories/**/*.ts',
'app/frontend/cypress/**/*',
],
},
],
'import/extensions': ['error', 'ignorePackages'],
'import/prefer-default-export': 'off',
// TODO: Add import rule to not allow that "app/**/modules/**" can import from each other and also add a rule that apps/** can not import from other apps.
/* We strongly recommend that you do not use the no-undef lint rule on TypeScript projects. The checks it provides are already provided by TypeScript without the need for configuration - TypeScript just does this significantly better (Source: https://github.com/typescript-eslint/typescript-eslint/blob/master/docs/getting-started/linting/FAQ.md#i-get-errors-from-the-no-undef-rule-about-global-variables-not-being-defined-even-though-there-are-no-typescript-errors). */
'no-undef': 'off',
// We need to use the extended 'no-shadow' rule from typescript:
// https://github.com/typescript-eslint/typescript-eslint/blob/master/packages/eslint-plugin/docs/rules/no-shadow.md
'no-shadow': 'off',
'@typescript-eslint/no-shadow': 'off',
'@typescript-eslint/no-explicit-any': ['error', { ignoreRestArgs: true }],
'@typescript-eslint/naming-convention': [
'error',
{
selector: 'enumMember',
format: ['StrictPascalCase'],
},
{
selector: 'typeLike',
format: ['PascalCase'],
},
],
'vue/component-tags-order': [
'error',
{
order: ['script', 'template', 'style'],
},
],
'vue/script-setup-uses-vars': 'error',
// Don't require a default value for the props.
'vue/require-default-prop': 'off',
// Don't require multi word component names.
'vue/multi-word-component-names': 'off',
// Enforce v-bind directive usage in short form as error instead of warning.
'vue/v-bind-style': ['error', 'shorthand'],
// Enforce v-on directive usage in short form as error instead of warning.
'vue/v-on-style': ['error', 'shorthand'],
// Enforce v-slot directive usage in short form as error instead of warning.
'vue/v-slot-style': ['error', 'shorthand'],
'no-promise-executor-return': 'off',
// We have quite a lot of constant strings in our code.
'sonarjs/no-duplicate-string': 'off',
// It also supresses local function returns.
'sonarjs/prefer-immediate-return': 'off',
'sonarjs/prefer-single-boolean-return': 'off',
},
overrides: [
{
files: ['*.js'],
rules: {
'@typescript-eslint/no-var-requires': 'off',
'security/detect-object-injection': 'off',
'security/detect-non-literal-fs-filename': 'off',
'security/detect-non-literal-regexp': 'off',
},
},
{
files: [
'app/frontend/tests/**',
'app/frontend/**/__tests__/**',
'app/frontend/**/*.spec.*',
'app/frontend/stories/**',
'app/frontend/cypress/**',
'app/frontend/**/*.stories.ts',
'app/frontend/**/*.story.vue',
'.eslint-plugin-zammad/**',
'.eslintrc.js',
],
rules: {
'zammad/zammad-tailwind-ltr': 'off',
'zammad/zammad-detect-translatable-string': 'off',
'@typescript-eslint/no-non-null-assertion': 'off',
'@typescript-eslint/no-explicit-any': 'off',
'import/first': 'off',
},
},
// rules that require type information
{
files: ['*.ts', '*.tsx', '*.vue'],
rules: {
// handled by typescript itself with "verbatimModuleSyntax"
'@typescript-eslint/consistent-type-imports': 'off',
'@typescript-eslint/consistent-type-exports': 'error',
'security/detect-object-injection': 'off',
'security/detect-non-literal-fs-filename': 'off',
'security/detect-non-literal-regexp': 'off',
},
parserOptions: {
project: ['./tsconfig.json', './app/frontend/cypress/tsconfig.json'],
},
},
],
settings: {
'import/core-modules': ['virtual:pwa-register'],
'import/parsers': {
'@typescript-eslint/parser': ['.ts', '.tsx'],
},
'import/resolver': {
typescript: {
alwaysTryTypes: true,
},
alias: {
map: [
[
'vue-easy-lightbox/dist/external-css/vue-easy-lightbox.css',
path.resolve(
__dirname,
'node_modules/vue-easy-lightbox/dist/external-css/vue-easy-lightbox.css',
),
],
],
extensions: ['.js', '.jsx', '.ts', '.tsx', '.vue'],
},
node: {
extensions: ['.js', '.jsx', '.ts', '.tsx', '.vue'],
},
},
// Adding typescript file types, because airbnb doesn't allow this by default.
'import/extensions': ['.js', '.jsx', '.ts', '.tsx', '.vue'],
},
globals: {
defineProps: 'readonly',
defineEmits: 'readonly',
defineExpose: 'readonly',
withDefaults: 'readonly',
},
parser: 'vue-eslint-parser',
parserOptions: {
parser: '@typescript-eslint/parser', // the typescript-parser for eslint, instead of tslint
sourceType: 'module', // allow the use of imports statements
ecmaVersion: 2020, // allow the parsing of modern ecmascript
},
}