generated from GrabarzUndPartner/gp-vue-boilerplate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.eslintrc.json
96 lines (96 loc) · 2.49 KB
/
.eslintrc.json
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
{
"root": true,
"parserOptions": {
"parser": "babel-eslint",
"sourceType": "module"
},
"extends": [
"@nuxtjs",
"plugin:security/recommended",
"plugin:sonarjs/recommended"
],
"plugins": [
"no-secrets",
"scanjs-rules",
"xss"
],
"rules": {
"no-secrets/no-secrets": [
"error"
],
"scanjs-rules/accidental_assignment": 1,
"scanjs-rules/assign_to_hostname": 1,
"scanjs-rules/assign_to_href": 1,
"scanjs-rules/assign_to_location": 1,
"scanjs-rules/assign_to_onmessage": 1,
"scanjs-rules/assign_to_pathname": 1,
"scanjs-rules/assign_to_protocol": 1,
"scanjs-rules/assign_to_search": 1,
"scanjs-rules/call_Function": 1,
"scanjs-rules/call_addEventListener": 1,
"scanjs-rules/call_addEventListener_deviceproximity": 1,
"scanjs-rules/call_addEventListener_message": 1,
"scanjs-rules/call_connect": 1,
"scanjs-rules/call_eval": 1,
"scanjs-rules/call_execScript": 1,
"scanjs-rules/call_hide": 1,
"scanjs-rules/call_open_remote=true": 1,
"scanjs-rules/call_parseFromString": 1,
"scanjs-rules/call_setImmediate": 1,
"scanjs-rules/call_setInterval": 1,
"scanjs-rules/call_setTimeout": 1,
"scanjs-rules/identifier_indexedDB": 1,
"scanjs-rules/identifier_localStorage": 1,
"scanjs-rules/identifier_sessionStorage": 1,
"scanjs-rules/new_Function": 1,
"scanjs-rules/property_addIdleObserver": 1,
"scanjs-rules/property_createContextualFragment": 1,
"scanjs-rules/property_crypto": 1,
"scanjs-rules/property_geolocation": 1,
"scanjs-rules/property_getUserMedia": 1,
"scanjs-rules/property_indexedDB": 1,
"scanjs-rules/property_localStorage": 1,
"scanjs-rules/property_mgmt": 1,
"scanjs-rules/property_sessionStorage": 1,
"xss/no-location-href-assign": 2,
"xss/no-mixed-html": 0,
"semi": [
2,
"always"
],
"complexity": [
"error",
{
"max": 7
}
],
"vue/no-v-html": "off",
"vue/name-property-casing": [
"error",
"PascalCase"
],
"vue/component-name-in-template-casing": [
"error",
"kebab-case",
{
"registeredComponentsOnly": true,
"ignores": []
}
],
"sonarjs/no-duplicate-string": 0,
"no-multiple-empty-lines": [
"error",
{
"max": 1,
"maxEOF": 1
}
],
"padded-blocks": [
"error",
"never"
],
"no-debugger": "off",
"no-console": "off",
"no-empty-function": "error"
}
}