commit
09b2ed4ff4
4 changed files with 39 additions and 26 deletions
|
@ -1,13 +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
|
|
||||||
|
|
||||||
[*.md]
|
|
||||||
trim_trailing_whitespace = false
|
|
||||||
indent_size = 4
|
|
6
.gitignore
vendored
6
.gitignore
vendored
|
@ -1,2 +1,4 @@
|
||||||
node_modules/
|
*.log
|
||||||
dist/
|
*.~lock
|
||||||
|
dist/
|
||||||
|
node_modules/
|
25
.vscode/settings.json
vendored
25
.vscode/settings.json
vendored
|
@ -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": {
|
"files.associations": {
|
||||||
"*.template": "json"
|
"*.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
|
||||||
}
|
}
|
||||||
}
|
}
|
|
@ -1,15 +1,16 @@
|
||||||
assets/
|
*.log
|
||||||
.vscode/**
|
|
||||||
typings/**
|
|
||||||
out/test/**
|
|
||||||
test/**
|
|
||||||
src/**
|
|
||||||
**/*.map
|
**/*.map
|
||||||
.gulp
|
|
||||||
.github
|
.github
|
||||||
.gitignore
|
.gitignore
|
||||||
tsconfig.json
|
.gulp
|
||||||
vsc-extension-quickstart.md
|
.vscode/**
|
||||||
node_modules
|
assets/
|
||||||
gulpfile.babel.json
|
gulpfile.babel.json
|
||||||
|
node_modules
|
||||||
|
out/test/**
|
||||||
|
src/**
|
||||||
|
test/**
|
||||||
|
tsconfig.json
|
||||||
|
typings/**
|
||||||
|
vsc-extension-quickstart.md
|
||||||
yarn.lock
|
yarn.lock
|
Loading…
Reference in a new issue