Fix: Add fix for babel-eslist

pull/121/head
Nelson Chan 3 years ago
parent b91e9ddb7a
commit 1006b37a67

@ -17,7 +17,14 @@ module.exports = {
// override/add rules settings here, such as:
// 'vue/no-unused-vars': 'error'
"no-unused-vars": "warn",
indent: ["error", 4],
indent: [
"error",
4,
{
ignoredNodes: ["TemplateLiteral"],
SwitchCase: 1,
},
],
quotes: ["warn", "double"],
//semi: ['off', 'never'],
"vue/html-indent": ["warn", 4], // default: 2

Loading…
Cancel
Save