Skip to content

Commit

Permalink
fix(config): update
Browse files Browse the repository at this point in the history
  • Loading branch information
StephanGerbeth committed Sep 19, 2024
1 parent e17b4c1 commit 94101a4
Show file tree
Hide file tree
Showing 4 changed files with 55 additions and 53 deletions.
51 changes: 51 additions & 0 deletions .vscode/settings.json
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"
}
1 change: 1 addition & 0 deletions packages/observables/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@
"release": "npx semantic-release"
},
"dependencies": {
"@rxjs-collection/operators": "*",
"rxjs": "7.8.1"
}
}
1 change: 1 addition & 0 deletions packages/operators/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@
"release": "npx semantic-release"
},
"dependencies": {
"@rxjs-collection/observables": "*",
"rxjs": "7.8.1"
}
}
55 changes: 2 additions & 53 deletions rxjs-collection.code-workspace
Original file line number Diff line number Diff line change
Expand Up @@ -3,56 +3,5 @@
{
"path": "."
}
],
"settings": {
"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"
}
}
]
}

0 comments on commit 94101a4

Please sign in to comment.