mirror of
https://github.com/alerta/alerta-webui.git
synced 2025-03-17 22:12:37 +00:00
27 lines
605 B
JavaScript
27 lines
605 B
JavaScript
![]() |
module.exports = {
|
||
|
root: true,
|
||
|
env: {
|
||
|
node: true,
|
||
|
browser: true
|
||
|
},
|
||
|
extends: [
|
||
|
"plugin:vue/recommended",
|
||
|
"@vue/prettier",
|
||
|
"@vue/typescript"
|
||
|
],
|
||
|
rules: {
|
||
|
"no-console": "warn",
|
||
|
"no-debugger": "error",
|
||
|
quotes: ["error", "single"],
|
||
|
"vue/script-indent": "error",
|
||
|
"vue/name-property-casing": ["error", "PascalCase"],
|
||
|
"vue/component-name-in-template-casing": ["error", "kebab-case"],
|
||
|
"indent": ["error", 2],
|
||
|
"vue/html-indent": ["error", 2],
|
||
|
"vue/script-indent": ["error", 2],
|
||
|
},
|
||
|
parserOptions: {
|
||
|
parser: "typescript-eslint-parser"
|
||
|
}
|
||
|
};
|