Skip to content

Commit e0f9975

Browse files
committed
add new rule
1 parent 5faac83 commit e0f9975

File tree

1 file changed

+23
-1
lines changed

1 file changed

+23
-1
lines changed

β€Žpackage.json

Lines changed: 23 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,29 @@
7474
"vue/no-use-v-if-with-v-for": 0,
7575
"vue/html-closing-bracket-newline": 0,
7676
"vue/no-parsing-error": 0,
77-
"no-console": 0
77+
"no-console": 0,
78+
"quotes": [
79+
2,
80+
"single",
81+
{
82+
"avoidEscape": true,
83+
"allowTemplateLiterals": true
84+
}
85+
],
86+
"semi": [
87+
2,
88+
"never",
89+
{
90+
"beforeStatementContinuationChars": "never"
91+
}
92+
],
93+
"no-delete-var": 2,
94+
"prefer-const": [
95+
2,
96+
{
97+
"ignoreReadBeforeAssign": false
98+
}
99+
]
78100
}
79101
},
80102
"postcss": {

0 commit comments

Comments
Β (0)