|
@@ -74,7 +74,29 @@
|
|
|
"vue/no-use-v-if-with-v-for": 0,
|
|
|
"vue/html-closing-bracket-newline": 0,
|
|
|
"vue/no-parsing-error": 0,
|
|
|
- "no-console": 0
|
|
|
+ "no-console": 0,
|
|
|
+ "quotes": [
|
|
|
+ 2,
|
|
|
+ "single",
|
|
|
+ {
|
|
|
+ "avoidEscape": true,
|
|
|
+ "allowTemplateLiterals": true
|
|
|
+ }
|
|
|
+ ],
|
|
|
+ "semi": [
|
|
|
+ 2,
|
|
|
+ "never",
|
|
|
+ {
|
|
|
+ "beforeStatementContinuationChars": "never"
|
|
|
+ }
|
|
|
+ ],
|
|
|
+ "no-delete-var": 2,
|
|
|
+ "prefer-const": [
|
|
|
+ 2,
|
|
|
+ {
|
|
|
+ "ignoreReadBeforeAssign": false
|
|
|
+ }
|
|
|
+ ]
|
|
|
}
|
|
|
},
|
|
|
"postcss": {
|