-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
e17b4c1
commit 94101a4
Showing
4 changed files
with
55 additions
and
53 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,51 @@ | ||
{ | ||
"breadcrumbs.enabled": true, | ||
"editor.bracketPairColorization.enabled": true, | ||
"editor.cursorBlinking": "phase", | ||
"editor.formatOnPaste": true, | ||
"editor.minimap.renderCharacters": false, | ||
"editor.minimap.maxColumn": 200, | ||
"editor.minimap.showSlider": "always", | ||
"editor.smoothScrolling": true, | ||
"editor.codeActionsOnSave": { | ||
"source.fixAll.eslint": "explicit" | ||
}, | ||
"editor.formatOnSave": true, | ||
"eslint.validate": [ | ||
"javascript", | ||
"javascriptreact", | ||
"vue", | ||
"html" | ||
], | ||
"files.exclude": { | ||
"docs/": true, | ||
".scannerwork/": true, | ||
"node_modules/": false, | ||
"**/.idea": true, | ||
"**/*.iml": true, | ||
"**/out": true, | ||
"**/gen": true, | ||
"**/logs": true, | ||
"**/*.log": true, | ||
"**/.DS_Store": true, | ||
".*": false | ||
}, | ||
"files.associations": { | ||
".branchlintrc": "json", | ||
".huskyrc": "json", | ||
".lintstagedrc": "json", | ||
".postcssrc": "json", | ||
".releaserc": "json", | ||
".*ignore": "ignore", | ||
"*.js.tmpl": "javascript", | ||
"*.html.tmpl": "html" | ||
}, | ||
"javascript.format.enable": false, | ||
"javascript.suggest.paths": false, | ||
"path-intellisense.mappings": { | ||
"@operators/*": "${workspaceRoot}/packages/operators/src" | ||
}, | ||
"window.title": "${dirty} ${activeEditorMedium}${separator}${rootName}", | ||
"workbench.settings.enableNaturalLanguageSearch": false, | ||
"task.autoDetect": "off" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -15,6 +15,7 @@ | |
"release": "npx semantic-release" | ||
}, | ||
"dependencies": { | ||
"@rxjs-collection/operators": "*", | ||
"rxjs": "7.8.1" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -15,6 +15,7 @@ | |
"release": "npx semantic-release" | ||
}, | ||
"dependencies": { | ||
"@rxjs-collection/observables": "*", | ||
"rxjs": "7.8.1" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters