tachiyomi-website/.eslintrc.json
arkon f3f186cef0 Configure automatic linting (#83)
* Configure automatic linting

* Remove FontAwesome icons

* Ignore mismatching component name
2020-01-09 05:15:44 +01:00

23 lines
282 B
JSON

{
"env": {
"browser": true,
"es6": true
},
"extends": [
"plugin:vue/essential",
"vuepress",
"prettier"
],
"parserOptions": {
"ecmaVersion": 2018,
"sourceType": "module"
},
"plugins": [
"vue",
"prettier"
],
"rules": {
"prettier/prettier": ["error"]
}
}