.eslintrc 338 Bytes
  1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
{
"root": true,
"parserOptions": {
"parser": "babel-eslint",
"ecmaVersion": 2017,
"sourceType": "module"
},
"extends": [
"standard",
"plugin:vue/recommended"
],
"rules": {
"vue/max-attributes-per-line": "off",
"template-curly-spacing" : "off",
"indent": "off",
"camelcase": "off"
}
}