mirror of
https://github.com/MarcZierle/photo-log-frontend.git
synced 2025-04-06 20:44:37 +00:00
35 lines
652 B
JSON
35 lines
652 B
JSON
{
|
|
"env": {
|
|
"es2021": true,
|
|
},
|
|
"extends": [
|
|
"eslint:recommended",
|
|
"plugin:vue/essential"
|
|
],
|
|
"globals": {
|
|
"Atomics": "readonly",
|
|
"SharedArrayBuffer": "readonly"
|
|
},
|
|
"plugins": [
|
|
"vue"
|
|
],
|
|
"rules": {
|
|
"indent": ["error", "tab", {
|
|
"ignoredNodes": ["TemplateLiteral"]
|
|
}],
|
|
"linebreak-style": [
|
|
"off",
|
|
"unix"
|
|
],
|
|
"quotes": [
|
|
"error",
|
|
"single"
|
|
],
|
|
"semi": [
|
|
"error",
|
|
"never"
|
|
],
|
|
"vue/no-v-model-argument": "off",
|
|
"no-unreachable": "off"
|
|
}
|
|
} |