Init Vue-CLI project files
This commit is contained in:
parent
c8e6e8700d
commit
491c9aa5c5
8 changed files with 11630 additions and 0 deletions
21
.eslintrc.js
Normal file
21
.eslintrc.js
Normal file
|
|
@ -0,0 +1,21 @@
|
|||
module.exports = {
|
||||
extends: [
|
||||
// add more generic rulesets here, such as:
|
||||
// 'eslint:recommended',
|
||||
'plugin:vue/recommended'
|
||||
],
|
||||
rules: {
|
||||
// override/add rules settings here, such as:
|
||||
// 'vue/no-unused-vars': 'error'
|
||||
"vue/no-extra-semi": "off",
|
||||
"vue/html-indent": "off",
|
||||
"vue/max-attributes-per-line": ["error", {
|
||||
"singleline": 2,
|
||||
"multiline": {
|
||||
"max": 2,
|
||||
"allowFirstLine": false
|
||||
}
|
||||
}],
|
||||
"vue/singleline-html-element-content-newline": "off"
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue