ProxmoxAAS-Dashboard/.eslintrc.json

43 lines
509 B
JSON
Raw Normal View History

2023-06-29 22:20:15 +00:00
{
"env": {
"browser": true,
"es2021": true
},
"extends": "standard",
"parserOptions": {
"ecmaVersion": "latest",
"sourceType": "module"
},
"rules": {
2023-06-29 22:20:15 +00:00
"no-tabs": [
"error",
{
"allowIndentationTabs": true
}
],
"indent": [
"error",
"tab"
],
"linebreak-style": [
"error",
"unix"
],
"quotes": [
"error",
"double"
],
"semi": [
"error",
"always"
],
"brace-style": [
"error",
"stroustrup",
{
"allowSingleLine": false
}
]
}
2023-06-29 22:20:15 +00:00
}