Skip to content

Commit 94101a4

Browse files
fix(config): update
1 parent e17b4c1 commit 94101a4

File tree

4 files changed

+55
-53
lines changed

4 files changed

+55
-53
lines changed

.vscode/settings.json

+51
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,51 @@
1+
{
2+
"breadcrumbs.enabled": true,
3+
"editor.bracketPairColorization.enabled": true,
4+
"editor.cursorBlinking": "phase",
5+
"editor.formatOnPaste": true,
6+
"editor.minimap.renderCharacters": false,
7+
"editor.minimap.maxColumn": 200,
8+
"editor.minimap.showSlider": "always",
9+
"editor.smoothScrolling": true,
10+
"editor.codeActionsOnSave": {
11+
"source.fixAll.eslint": "explicit"
12+
},
13+
"editor.formatOnSave": true,
14+
"eslint.validate": [
15+
"javascript",
16+
"javascriptreact",
17+
"vue",
18+
"html"
19+
],
20+
"files.exclude": {
21+
"docs/": true,
22+
".scannerwork/": true,
23+
"node_modules/": false,
24+
"**/.idea": true,
25+
"**/*.iml": true,
26+
"**/out": true,
27+
"**/gen": true,
28+
"**/logs": true,
29+
"**/*.log": true,
30+
"**/.DS_Store": true,
31+
".*": false
32+
},
33+
"files.associations": {
34+
".branchlintrc": "json",
35+
".huskyrc": "json",
36+
".lintstagedrc": "json",
37+
".postcssrc": "json",
38+
".releaserc": "json",
39+
".*ignore": "ignore",
40+
"*.js.tmpl": "javascript",
41+
"*.html.tmpl": "html"
42+
},
43+
"javascript.format.enable": false,
44+
"javascript.suggest.paths": false,
45+
"path-intellisense.mappings": {
46+
"@operators/*": "${workspaceRoot}/packages/operators/src"
47+
},
48+
"window.title": "${dirty} ${activeEditorMedium}${separator}${rootName}",
49+
"workbench.settings.enableNaturalLanguageSearch": false,
50+
"task.autoDetect": "off"
51+
}

packages/observables/package.json

+1
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@
1515
"release": "npx semantic-release"
1616
},
1717
"dependencies": {
18+
"@rxjs-collection/operators": "*",
1819
"rxjs": "7.8.1"
1920
}
2021
}

packages/operators/package.json

+1
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@
1515
"release": "npx semantic-release"
1616
},
1717
"dependencies": {
18+
"@rxjs-collection/observables": "*",
1819
"rxjs": "7.8.1"
1920
}
2021
}

rxjs-collection.code-workspace

+2-53
Original file line numberDiff line numberDiff line change
@@ -3,56 +3,5 @@
33
{
44
"path": "."
55
}
6-
],
7-
"settings": {
8-
"breadcrumbs.enabled": true,
9-
"editor.bracketPairColorization.enabled": true,
10-
"editor.cursorBlinking": "phase",
11-
"editor.formatOnPaste": true,
12-
"editor.minimap.renderCharacters": false,
13-
"editor.minimap.maxColumn": 200,
14-
"editor.minimap.showSlider": "always",
15-
"editor.smoothScrolling": true,
16-
"editor.codeActionsOnSave": {
17-
"source.fixAll.eslint": "explicit"
18-
},
19-
"editor.formatOnSave": true,
20-
"eslint.validate": [
21-
"javascript",
22-
"javascriptreact",
23-
"vue",
24-
"html"
25-
],
26-
"files.exclude": {
27-
"docs/": true,
28-
".scannerwork/": true,
29-
"node_modules/": false,
30-
"**/.idea": true,
31-
"**/*.iml": true,
32-
"**/out": true,
33-
"**/gen": true,
34-
"**/logs": true,
35-
"**/*.log": true,
36-
"**/.DS_Store": true,
37-
".*": false
38-
},
39-
"files.associations": {
40-
".branchlintrc": "json",
41-
".huskyrc": "json",
42-
".lintstagedrc": "json",
43-
".postcssrc": "json",
44-
".releaserc": "json",
45-
".*ignore": "ignore",
46-
"*.js.tmpl": "javascript",
47-
"*.html.tmpl": "html"
48-
},
49-
"javascript.format.enable": false,
50-
"javascript.suggest.paths": false,
51-
"path-intellisense.mappings": {
52-
"@operators/*": "${workspaceRoot}/packages/operators/src"
53-
},
54-
"window.title": "${dirty} ${activeEditorMedium}${separator}${rootName}",
55-
"workbench.settings.enableNaturalLanguageSearch": false,
56-
"task.autoDetect": "off"
57-
}
58-
}
6+
]
7+
}

0 commit comments

Comments
 (0)