chore: dumps .editorconfig and moves settings to settings.json

This commit is contained in:
OctoD 2017-05-22 09:54:30 +02:00
parent c474bcf958
commit 3bdd28f323
2 changed files with 24 additions and 17 deletions

View file

@ -1,16 +0,0 @@
root = true
[*]
charset = utf-8
end_of_line = lf
indent_style = space
indent_size = 2
insert_final_newline = true
trim_trailing_whitespace = true
[*.{py,sublime-project}]
indent_size = 4
[*.md]
trim_trailing_whitespace = false
indent_size = 4

25
.vscode/settings.json vendored
View file

@ -1,6 +1,29 @@
{
"vsicons.presets.angular": false,
"editor.tabSize": 2,
"editor.insertSpaces": true,
"files.exclude": {
"**/.git": true,
"**/.svn": true,
"**/.hg": true,
"**/CVS": true,
"**/.DS_Store": true,
"node_modules": true,
"**/*.js": {
"when": "$(basename).ts"
}
},
"files.associations": {
"*.template": "json"
},
"html.format.preserveNewLines": true,
"files.trimTrailingWhitespace": true,
"[python]": {
"editor.tabSize": 4
},
"[markdown]": {
"diffEditor.ignoreTrimWhitespace": false,
"editor.tabSize": 4,
"editor.wordWrap": "on",
"editor.quickSuggestions": false
}
}