Initial commit

This commit is contained in:
Oliver 2021-11-29 17:04:26 -06:00
commit 9212949716
27 changed files with 24369 additions and 0 deletions

23
.eslintrc.js Normal file
View file

@ -0,0 +1,23 @@
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",
"vue/prop-name-casing": "off",
"vue/order-in-components": "off"
}
}