Update editor configs

This commit is contained in:
varjolintu 2023-12-19 11:45:55 +02:00
parent 924560db4b
commit d743939255
3 changed files with 10 additions and 3 deletions

View file

@ -8,6 +8,7 @@ end_of_line = lf
insert_final_newline = true insert_final_newline = true
charset = utf-8 charset = utf-8
indent_style = space indent_style = space
max_line_length = 120
# Get rid of whitespace to avoid diffs with a bunch of EOL changes # Get rid of whitespace to avoid diffs with a bunch of EOL changes
trim_trailing_whitespace = true trim_trailing_whitespace = true

View file

@ -1,6 +1,7 @@
{ {
"singleQuote": true,
"trailingComma": "all",
"arrowParens": "avoid", "arrowParens": "avoid",
"tabWidth": 4 "bracketSpacing": true,
"singleQuote": true,
"tabWidth": 4,
"trailingComma": "all"
} }

5
.vscode/settings.json vendored Normal file
View file

@ -0,0 +1,5 @@
{
"editor.rulers": [
120
]
}