2020-01-09 05:15:44 +01:00
|
|
|
{
|
|
|
|
"env": {
|
|
|
|
"browser": true,
|
|
|
|
"es6": true
|
|
|
|
},
|
|
|
|
"extends": [
|
|
|
|
"plugin:vue/essential",
|
2020-05-21 04:47:01 +02:00
|
|
|
"airbnb-base",
|
|
|
|
"prettier",
|
|
|
|
"vuepress"
|
2020-01-09 05:15:44 +01:00
|
|
|
],
|
2020-05-21 04:47:01 +02:00
|
|
|
"globals": {
|
|
|
|
"Atomics": "readonly",
|
|
|
|
"SharedArrayBuffer": "readonly"
|
|
|
|
},
|
2020-01-09 05:15:44 +01:00
|
|
|
"parserOptions": {
|
|
|
|
"ecmaVersion": 2018,
|
|
|
|
"sourceType": "module"
|
|
|
|
},
|
|
|
|
"plugins": [
|
|
|
|
"vue",
|
2020-05-21 04:47:01 +02:00
|
|
|
"prettier",
|
|
|
|
"markdown"
|
2020-01-09 05:15:44 +01:00
|
|
|
],
|
|
|
|
"rules": {
|
2020-07-29 19:36:55 +02:00
|
|
|
"prettier/prettier": ["error", {
|
|
|
|
"endOfLine":"auto"
|
|
|
|
}],
|
2020-05-21 04:47:01 +02:00
|
|
|
"import/no-unresolved": [
|
|
|
|
2,
|
|
|
|
{ "ignore": ["^@"] }
|
|
|
|
]
|
2020-01-09 05:15:44 +01:00
|
|
|
}
|
2020-07-29 19:36:55 +02:00
|
|
|
}
|