flatisfy/.eslintrc

14 lines
245 B
Plaintext
Raw Normal View History

{
extends: ["vue", /* your other extends */],
plugins: ["vue"],
"env": {
"browser": true
},
2021-01-26 20:03:14 +01:00
"parserOptions": {
"ecmaVersion": 8
},
rules: {
'indent': ["error", 4, { 'SwitchCase': 1 }],
}
}