This repository was archived by the owner on Apr 6, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbackend-infraction.code-workspace
More file actions
49 lines (49 loc) · 1.58 KB
/
backend-infraction.code-workspace
File metadata and controls
49 lines (49 loc) · 1.58 KB
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
{
"folders": [
{
"path": "."
}
],
"settings": {
"flow.enabled": false,
"stylelint.enable": false,
"auto-close-tag.enableAutoCloseTag": false,
"auto-rename-tag.activationOnLanguage": ["html"],
"prettier.eslintIntegration": true,
"prettier.tslintIntegration": true,
"prettier.stylelintIntegration": false,
"path-intellisense.absolutePathToWorkspace": true,
"path-intellisense.extensionOnImport": false,
"npm-intellisense.importDeclarationType": "const",
"npm-intellisense.importLinebreak": "\r\n",
"npm-intellisense.packageSubfoldersIntellisense": true,
"npm-intellisense.recursivePackageJsonLookup": true,
"npm-intellisense.importES6": true,
"npm-intellisense.importQuotes": "'",
"editor.tabSize": 2,
"prettier.bracketSpacing": false,
"prettier.arrowParens": "avoid",
"prettier.jsxBracketSameLine": false,
"prettier.printWidth": 120,
"prettier.semi": false,
"prettier.singleQuote": true,
"prettier.useTabs": false,
"files.associations": {
"*.js": "javascript"
},
"javascript.validate.enable": false,
"javascript.format.enable": false,
"editor.formatOnSave": true,
"better-comments.multilineComments": true,
"eslint.options": {
"extensions": [".js", ".jsx"]
},
"eslint.validate": ["javascript", "javascriptreact"],
"workbench.colorCustomizations": {
"titleBar.activeBackground": "#1346bf",
"titleBar.inactiveBackground": "#1346bf99",
"titleBar.activeForeground": "#e7e7e7",
"titleBar.inactiveForeground": "#e7e7e799"
}
}
}