Add recommended VSCode extensions (#2244)

* Add code spell check and i18n-ally to recommended vscode extens
ions

* Add EditorConfig to recommended extensions and formatCodeOnAction to use eslint fix
This commit is contained in:
Tasos Boulis 2022-08-30 00:15:25 +03:00 committed by GitHub
parent f95fce2c85
commit 6d550a8a16
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
5 changed files with 91 additions and 70 deletions

View file

@ -6,3 +6,4 @@ charset = utf-8
indent_style = space indent_style = space
indent_size = 4 indent_size = 4
insert_final_newline = true insert_final_newline = true
trim_trailing_whitespace = true

View file

@ -3,6 +3,9 @@
// for the documentation about the extensions.json format // for the documentation about the extensions.json format
"recommendations": [ "recommendations": [
"dbaeumer.vscode-eslint", "dbaeumer.vscode-eslint",
"msjsdiag.debugger-for-chrome" "msjsdiag.debugger-for-chrome",
"streetsidesoftware.code-spell-checker",
"lokalise.i18n-ally",
"EditorConfig.EditorConfig"
] ]
} }

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

@ -0,0 +1,17 @@
{
"i18n-ally.localesPaths": [
"i18n"
],
"editor.codeActionsOnSave": {
"source.fixAll.eslint": true
},
"cSpell.words": [
"browserview",
"deauthorize",
"loadscreen",
"Ochiai",
"UNCLOSEABLE",
"webcontents",
"Yuya"
]
}