-
Notifications
You must be signed in to change notification settings - Fork 0
/
.eslintrc
44 lines (44 loc) · 1 KB
/
.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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
{
"parserOptions": {
"ecmaVersion": 2020,
"sourceType": "module"
},
"globals": {
"STAC_BROWSER_VERSION": "readonly",
"CONFIG_PATH": "readonly",
"CONFIG_CLI": "readonly",
"require": "readonly"
},
"extends": [
"plugin:vue/strongly-recommended",
"eslint:recommended"
],
"ignorePatterns": [
"**/stac-fields",
"**/stac-migrate",
"**/stac-layer",
"config.js",
"*.config.js"
],
"rules": {
"curly": [1, "all"],
"semi": [1, "always"],
"vue/multi-word-component-names": "off",
"vue/singleline-html-element-content-newline": "off",
"vue/attribute-hyphenation": "off",
"vue/max-attributes-per-line": ["error", {
"singleline": {
"max": 6
},
"multiline": {
"max": 4
}
}],
"vue/component-tags-order": ["error", {
"order": ["template", "script", "style"]
}],
"vue/order-in-components": "error",
"vue/this-in-template": "error",
"vue/match-component-file-name": "error"
}
}