-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathnewsettings.json
More file actions
96 lines (96 loc) · 3.17 KB
/
newsettings.json
File metadata and controls
96 lines (96 loc) · 3.17 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
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
{
"workbench.colorTheme": "Dracula",
"workbench.iconTheme": "vscode-icons",
"terminal.integrated.defaultProfile.linux": "zsh",
"editor.minimap.enabled": true,
"editor.inlineSuggest.enabled": true,
"editor.formatOnSave": true,
"editor.tabSize": 2,
"editor.quickSuggestions": {
"strings": true
},
"editor.codeActionsOnSave": {
// "source.organizeImports": true // Sort imports
// "source.fixAll": true // remove unused code
},
// formatter
"editor.defaultFormatter": "esbenp.prettier-vscode",
// prettier
"prettier.tabWidth": 2,
"prettier.singleQuote": true,
"prettier.semi": true,
"prettier.jsxSingleQuote": true,
"prettier.printWidth": 100,
"prettier.trailingComma": "none",
"prettier.arrowParens": "avoid",
"prettier.endOfLine": "auto",
"prettier.requireConfig": false,
// "prettier.configPath": ".prettierrc",
//eslint
"eslint.alwaysShowStatus": true,
// "[javascriptreact]": {
// "editor.defaultFormatter": "esbenp.prettier-vscode"
// },
// // // "javascript.updateImportsOnFileMove.enabled": "prompt",
// "[typescript]": {
// "editor.defaultFormatter": "esbenp.prettier-vscode"
// },
// "[javascript]": {
// "editor.defaultFormatter": "esbenp.prettier-vscode"
// },
// "[html]": {
// // // "editor.defaultFormatter": "esbenp.prettier-vscode"
// "editor.defaultFormatter": "vscode.html-language-features"
// },
// "[typescriptreact]": {
// "editor.defaultFormatter": "vscode.typescript-language-features"
// },
// "[css]": {
// "editor.defaultFormatter": "vscode.css-language-features"
// },
// "[scss]": {
// "editor.defaultFormatter": "esbenp.prettier-vscode"
// },
// Tailwind
// "tailwindCSS.emmetCompletions": true,
// "tailwindCSS.includeLanguages": {
// "html": "html",
// "javascript": "javascript",
// "css": "css"
// },
// LUA
// "Lua.telemetry.enable": false,
// "[lua]": {
// "editor.quickSuggestions": {
// "comments": "inline",
// "other": "on",
// "strings": "on"
// }
// },
"explorer.confirmDelete": false,
"explorer.confirmDragAndDrop": false,
// Material Icon for Nest
// "material-icon-theme.activeIconPack": "nest",
"security.workspace.trust.untrustedFiles": "open",
"angular.enable-strict-mode-prompt": false,
"stylelint.snippet": ["css", "less", "postcss", "scss"],
"stylelint.validate": ["css", "less", "postcss", "scss"],
"stylelint.enable": true,
"redhat.telemetry.enabled": true,
"totalTypeScript.hideAllTips": false,
"totalTypeScript.hideBasicTips": true,
"[python]": {
"editor.formatOnType": true
},
"totalTypeScript.hiddenTips": ["generic-slots-in-functions"],
"vsicons.dontShowNewVersionMessage": true,
"[cpp]": {
"editor.defaultFormatter": "ms-vscode.cpptools"
},
"C_Cpp.clang_format_fallbackStyle": "{ BasedOnStyle: LLVM, UseTab: Never, IndentWidth: 2, TabWidth: 2, BreakBeforeBraces: Attach, AllowShortIfStatementsOnASingleLine: false, IndentCaseLabels: false, ColumnLimit: 0, AccessModifierOffset: -4 }"
// "pixelbyte.love2d.path": "/usr/bin/love-11.3",
// "[graphql]": {
// "editor.defaultFormatter": "GraphQL.vscode-graphql",
// "editor.formatOnSave": true
// }
}