forked from bpmn-io/form-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.eslintrc
28 lines (28 loc) · 813 Bytes
/
.eslintrc
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
{
"parserOptions": {
"ecmaVersion": 2019
},
"extends": [
"plugin:bpmn-io/browser",
"plugin:bpmn-io/jsx",
"plugin:bpmn-io/node",
"plugin:react-hooks/recommended"
],
"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" ] }
]
}]
},
"plugins": [
"import"
]
}