-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy patheslint.config.js
98 lines (95 loc) · 1.99 KB
/
eslint.config.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
/* eslint-disable no-undef */
const eslintPluginPrettierRecommended = require('eslint-plugin-prettier/recommended')
const eslintPluginYml = require('eslint-plugin-yml')
const eslint = require('@eslint/js')
const globals = require('globals')
const common = [
eslintPluginPrettierRecommended,
eslint.configs.recommended,
...eslintPluginYml.configs['flat/recommended'],
{
languageOptions: {
parserOptions: {
sourceType: 'module'
},
globals: {
...globals.browser,
...globals.node
}
},
rules: {
'class-methods-use-this': 'warn',
'no-param-reassign': [
'error',
{
props: false
}
],
'no-tabs': 'error',
'no-plusplus': 'off',
'no-underscore-dangle': 'off',
'no-unused-vars': ['warn', { argsIgnorePattern: '^_' }],
'import/extensions': 'off',
'import/first': 'off',
'import/no-unresolved': 'off',
'prettier/prettier': 'error',
'yml/plain-scalar': 'off',
'yml/quotes': [
'error',
{
prefer: 'single'
}
],
'yml/indent': 'off',
'yml/sort-keys': 'off',
'yml/no-empty-mapping-value': 'off',
'yml/no-multiple-empty-lines': [
'error',
{
max: 1
}
],
'yml/no-empty-document': 'off'
},
settings: {}
},
{
ignores: [
'.DS_Store',
'node_modules/',
'tmp/',
'coverage/',
'.vscode/',
'yarn.lock',
'Gemfile.lock',
'.env*',
'!.env*.dist',
'coverage/',
'public/assets/',
'**/.terraform/',
'tmp/*',
'.idea/*',
'dump.rdb',
'*.iml',
'**/kustomization.yaml',
'**/templates/',
'**/values.yaml',
'**/templates/',
'.github/',
'.torba/'
]
}
]
//EOF_DISTRIBUTION
module.exports = [
...common,
{
languageOptions: {
globals: {
...globals.jquery,
d3: true,
reporting: true
}
}
}
]