-
Notifications
You must be signed in to change notification settings - Fork 113
/
Copy patheslint.config.mjs
125 lines (116 loc) · 2.66 KB
/
eslint.config.mjs
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
import bpmnIoPlugin from 'eslint-plugin-bpmn-io';
import reactHooksPlugin from 'eslint-plugin-react-hooks';
import eslintConfigPrettier from 'eslint-config-prettier';
import importPlugin from 'eslint-plugin-import';
import globals from 'globals';
const files = {
ignored: ['packages/**/dist/*', 'node_modules', 'packages/**/types/*', 'coverage'],
browser: ['packages/**/src/**/*.js'],
test: ['packages/**/test/**/*'],
node: [
'e2e/visual/**/*',
'tasks/**/*',
'packages/**/tasks/**/*',
'packages/**/karma.conf.js',
'packages/**/rollup.config.js',
'vite.config.js',
],
};
export default [
{
ignores: files.ignored,
},
// Base configuration for all files
{
languageOptions: {
ecmaVersion: 2020,
sourceType: 'module',
},
},
// Browser + JSX configuration
...bpmnIoPlugin.configs.browser.map((config) => ({
...config,
files: files.browser,
})),
...bpmnIoPlugin.configs.jsx.map((config) => ({
...config,
files: [...files.browser, ...files.test],
})),
// Node configuration
...bpmnIoPlugin.configs.node.map((config) => ({
...config,
files: [...files.node, ...files.test],
})),
// React Hooks configuration
{
plugins: {
'react-hooks': reactHooksPlugin,
},
rules: {
...reactHooksPlugin.configs.recommended.rules,
},
files: files.browser,
},
// Import rules
{
plugins: {
import: importPlugin,
},
rules: {
'import/first': 'error',
'import/no-amd': 'error',
'import/no-webpack-loader-syntax': 'error',
'import/no-restricted-paths': [
'error',
{
basePath: './packages',
zones: [
{
target: 'form-js/src',
from: '.',
except: ['form-js'],
},
{
target: 'form-js-editor/src',
from: '.',
except: ['form-js-editor'],
},
{
target: 'form-js-playground/src',
from: '.',
except: ['form-js-playground'],
},
{
target: 'form-js-viewer/src',
from: '.',
except: ['form-js-viewer'],
},
],
},
],
},
},
...bpmnIoPlugin.configs.mocha.map((config) => {
return {
...config,
files: files.test,
};
}),
{
languageOptions: {
globals: {
sinon: true,
require: true,
...globals.browser,
...globals.mocha,
},
parserOptions: {
ecmaFeatures: {
jsx: true,
},
},
},
files: files.test,
},
eslintConfigPrettier,
];