set brace style to Stroustrup

This commit is contained in:
2023-06-29 22:09:57 +00:00
parent 79d2448a3d
commit 628067a061
4 changed files with 51 additions and 22 deletions

View File

@@ -10,8 +10,10 @@
},
"rules": {
"no-tabs": [
"error",
{ "allowIndentationTabs": true }
"error",
{
"allowIndentationTabs": true
}
],
"indent": [
"error",
@@ -28,6 +30,13 @@
"semi": [
"error",
"always"
],
"brace-style": [
"error",
"stroustrup",
{
"allowSingleLine": false
}
]
}
}
}