-
Notifications
You must be signed in to change notification settings - Fork 0
/
sr.code-workspace
53 lines (52 loc) · 1.29 KB
/
sr.code-workspace
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
{
"folders": [
{
"path": "."
}
],
"settings": {
"files.exclude": {
"**/.git": true,
"**/.hg": true,
"**/CVS": true,
"**/.DS_Store": true,
"docker/": true,
"**/node_modules": true,
"**/coverage": true
},
"search.exclude": {
"**/node_modules": true,
"**/dist": true
},
// eslint plugin settings -- required due to our nested tsconfig & custom rules
"eslint.alwaysShowStatus": true,
"eslint.lintTask.options": ". --ext .js",
"eslint.packageManager": "npm",
"eslint.validate": [
"javascript",
"javascriptreact",
],
"eslint.workingDirectories": [
{ "directory": "frontend", "changeProcessCWD": true },
{ "directory": "backend", "changeProcessCWD": true },
],
// recommended to enable auto-fixes to solve most linting issues:
"editor.codeActionsOnSave": {
"source.organizeImports": false,
"source.fixAll.eslint": true
},
"cSpell.words": [
"Szkoła Reacta",
],
},
"extensions": {
"recommendations": [
"dbaeumer.vscode-eslint",
"yzhang.markdown-all-in-one",
"davidanson.vscode-markdownlint",
"esbenp.prettier-vscode",
"bierner.markdown-mermaid",
"stylelint.vscode-stylelint"
]
}
}