forked from directus/directus
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.eslintrc.js
135 lines (131 loc) · 4.05 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
const basicRules = {
// No console & debugger statements in production
'no-console': process.env.NODE_ENV !== 'development' ? 'error' : 'off',
'no-debugger': process.env.NODE_ENV !== 'development' ? 'error' : 'off',
// Require empty line between certain statements
'padding-line-between-statements': [
'error',
{
blankLine: 'always',
prev: [
'block',
'block-like',
'cjs-export',
'class',
'export',
'import',
'multiline-block-like',
'multiline-const',
'multiline-expression',
'multiline-let',
'multiline-var',
],
next: '*',
},
{
blankLine: 'always',
prev: ['const', 'let'],
next: ['block', 'block-like', 'cjs-export', 'class', 'export', 'import'],
},
{
blankLine: 'always',
prev: '*',
next: ['multiline-block-like', 'multiline-const', 'multiline-expression', 'multiline-let', 'multiline-var'],
},
{ blankLine: 'any', prev: ['export', 'import'], next: ['export', 'import'] },
],
// Require empty line between class members
'lines-between-class-members': ['error', 'always', { exceptAfterSingleLine: true }],
// Disallow nested ternary expressions
'no-nested-ternary': 'error',
// Require brace style for multi-line control statements
curly: ['error', 'multi-line'],
// Disallow expressions where the operation doesn't affect the value
'no-constant-binary-expression': 'error',
};
const tsRules = {
// Allow unused arguments and variables when they begin with an underscore
'@typescript-eslint/no-unused-vars': ['warn', { argsIgnorePattern: '^_', varsIgnorePattern: '^_' }],
// Allow ts-directive comments (used to suppress TypeScript compiler errors)
'@typescript-eslint/ban-ts-comment': 'off',
// Allow usage of the any type (consider enabling this rule later on)
'@typescript-eslint/no-explicit-any': 'off',
};
const vueRules = {
// Same ordering of component tags everywhere
'vue/component-tags-order': [
'error',
{
order: ['script', 'template', 'style'],
},
],
// Require empty line between component tags
'vue/padding-line-between-blocks': 'error',
// Allow single word component names ("Example" instead of "MyExample")
'vue/multi-word-component-names': 'off',
// Don't require default value for props that are not marked as required
'vue/require-default-prop': 'off',
// Require shorthand form attribute when v-bind value is true
'vue/prefer-true-attribute-shorthand': 'error',
// Allow unused variables when they begin with an underscore
'vue/no-unused-vars': ['error', { ignorePattern: '^_' }],
};
const getExtends = (configs = []) => [
// Enables a subset of core rules that report common problems
'eslint:recommended',
...configs,
// Turns off rules from other configs that are
// unnecessary or might conflict with Prettier
// (should always be the last entry in 'extends')
'prettier',
];
/** @type {import('eslint').Linter.Config} */
module.exports = {
// Stop looking for other ESLint configurations in parent folders
root: true,
// Global variables: Browser and Node.js
env: {
browser: true,
node: true,
},
// Basic configuration
extends: getExtends(),
rules: basicRules,
parserOptions: {
ecmaVersion: 2022,
sourceType: 'module',
},
reportUnusedDisableDirectives: true,
overrides: [
// TypeScript & Vue files
{
files: ['*.ts', '*.vue'],
parser: 'vue-eslint-parser',
parserOptions: {
parser: '@typescript-eslint/parser',
},
plugins: ['@typescript-eslint'],
extends: getExtends([
// Recommended TypeScript rules for code correctness
'plugin:@typescript-eslint/recommended',
// Enables Vue plugin and recommended rules
'plugin:vue/vue3-recommended',
]),
rules: {
// Disables core rules which are already handled by TypeScript and
// enables rules that make sense due to TS's typechecking / transpilation
// (fetched directly to enable it for Vue files too)
...require('@typescript-eslint/eslint-plugin').configs['eslint-recommended'].overrides[0].rules,
...tsRules,
...vueRules,
},
},
// Test files
{
files: ['*.test.ts'],
rules: {
'vue/one-component-per-file': 'off',
},
},
],
};