Merge pull request #2051 from keepassxreboot/editor_configs

Update editor configs
This commit is contained in:
Sami Vänttinen 2023-12-20 06:41:36 +02:00 committed by GitHub
commit 5b87a10cbb
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 10 additions and 3 deletions

View file

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

View file

@ -1,6 +1,7 @@
{
"singleQuote": true,
"trailingComma": "all",
"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
]
}