ProxmoxAAS-API/.eslintrc.json

42 lines
505 B
JSON
Raw Normal View History

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