You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
346 B
JavaScript
22 lines
346 B
JavaScript
"use strict";
|
|
|
|
module.exports = {
|
|
|
|
"extends": "plugin:vue/recommended",
|
|
|
|
"parserOptions": {
|
|
|
|
// plugin:vue/recommended set's this to "module" for some reason...
|
|
"sourceType": "script"
|
|
|
|
},
|
|
|
|
"rules": {
|
|
|
|
"vue/html-indent": [ "error", 4 ],
|
|
"vue/singleline-html-element-content-newline": 0,
|
|
|
|
},
|
|
|
|
};
|