-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdefault.json
114 lines (114 loc) · 3.08 KB
/
default.json
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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
{
"editor.defaultFormatter": "esbenp.prettier-vscode",
"editor.formatOnSave": true,
"editor.detectIndentation": true,
"editor.fontLigatures": false,
"editor.rulers": [80],
"editor.snippetSuggestions": "top",
"editor.wordBasedSuggestions": false,
"editor.suggest.localityBonus": true,
"editor.acceptSuggestionOnCommitCharacter": false,
"[javascript]": {
"editor.defaultFormatter": "esbenp.prettier-vscode",
"editor.suggestSelection": "recentlyUsed",
"editor.suggest.showKeywords": false
},
"editor.renderWhitespace": "boundary",
"files.defaultLanguage": "{activeEditorLanguage}",
"javascript.validate.enable": false,
"search.exclude": {
"**/node_modules": true,
"**/bower_components": true,
"**/coverage": true,
"**/dist": true,
"**/build": true,
"**/.build": true,
"**/.gh-pages": true
},
"editor.codeActionsOnSave": {
"source.fixAll.eslint": false
},
"eslint.validate": [
"javascript",
"javascriptreact",
"typescript",
"typescriptreact"
],
"eslint.options": {
// "env": {
// "browser": true,
// "jest/globals": true,
// "es6": true
// },
"overrideConfig": {
"parserOptions": {
"ecmaVersion": 2019,
"sourceType": "module",
"ecmaFeatures": {
"jsx": true
},
"rules": {
"no-debugger": "off"
}
}
}
},
"workbench.iconTheme": "material-icon-theme",
"breadcrumbs.enabled": true,
"grunt.autoDetect": "off",
"gulp.autoDetect": "off",
"npm.runSilent": true,
"explorer.confirmDragAndDrop": false,
"editor.formatOnPaste": false,
"editor.cursorSmoothCaretAnimation": true,
"editor.smoothScrolling": true,
"php.suggest.basic": false,
"editor.inlineSuggest.enabled": true,
"javascript.updateImportsOnFileMove.enabled": "always",
"github.copilot.enable": {
"*": true,
"yaml": true,
"plaintext": false,
"markdown": false
},
"git.autofetch": true,
"typescript.updateImportsOnFileMove.enabled": "always",
"terminal.integrated.defaultProfile.windows": "Ubuntu (WSL)",
"dart.debugExternalPackageLibraries": false,
"dart.debugSdkLibraries": false,
"terminal.integrated.profiles.windows": {
"PowerShell": {
"source": "PowerShell",
"icon": "terminal-powershell"
},
"Command Prompt": {
"path": [
"${env:windir}\\Sysnative\\cmd.exe",
"${env:windir}\\System32\\cmd.exe"
],
"args": [],
"icon": "terminal-cmd"
},
"Git Bash": {
"source": "Git Bash"
},
"Ubuntu (WSL)": {
"path": "C:\\WINDOWS\\System32\\wsl.exe",
"args": ["-d", "Ubuntu"]
}
},
"git.enableSmartCommit": true,
"git.confirmSync": false,
"editor.unicodeHighlight.allowedCharacters": {
"’": true
},
"terminal.integrated.fontFamily": "MonoLisa",
"editor.fontFamily": "MonoLisa",
"editor.fontWeight": "normal",
"workbench.colorTheme": "Night Owl (No Italics)",
"dart.openDevTools": "flutter",
"files.autoSave": "onFocusChange",
"editor.wordWrap": "on",
"editor.fontSize": 16,
"window.openFoldersInNewWindow": "on"
}