mirror of
https://github.com/Xevion/the-office.git
synced 2025-12-06 01:16:34 -06:00
31 lines
785 B
JavaScript
31 lines
785 B
JavaScript
module.exports = {
|
|
root: true,
|
|
env: {
|
|
node: true
|
|
},
|
|
parserOptions: {
|
|
parser: "babel-eslint",
|
|
},
|
|
extends: [
|
|
'eslint:recommended',
|
|
'plugin:vue/essential',
|
|
'plugin:vue/recommended' // Use this if you are using Vue.js 2.x.
|
|
],
|
|
rules: {
|
|
// override/add rules settings here, such as:
|
|
'vue/no-unused-vars': 'error',
|
|
'indent': ['warn', 4],
|
|
"vue/html-indent": ["error", 4, {
|
|
"attribute": 1,
|
|
"baseIndent": 1,
|
|
"closeBracket": 0,
|
|
"alignAttributesVertically": true,
|
|
"ignores": []
|
|
}],
|
|
'vue/max-attributes-per-line': ["warn", {
|
|
"singleline": {"max": 5},
|
|
"multiline": {"max": 2}
|
|
}]
|
|
}
|
|
}
|