77 lines
2.6 KiB
JSON
77 lines
2.6 KiB
JSON
{
|
|
"editor.formatOnSave": true,
|
|
"editor.formatOnPaste": true,
|
|
"editor.minimap.enabled": false,
|
|
"editor.tabSize": 2,
|
|
"editor.fontSize": 14,
|
|
"editor.fontWeight": "normal",
|
|
"editor.guides.highlightActiveBracketPair": true,
|
|
"editor.bracketPairColorization.enabled": true,
|
|
"editor.bracketPairColorization.independentColorPoolPerBracketType": true,
|
|
"editor.guides.bracketPairs": true,
|
|
"editor.guides.bracketPairsHorizontal": true,
|
|
"editor.acceptSuggestionOnEnter": "smart",
|
|
"editor.tabCompletion": "on",
|
|
"editor.defaultFormatter": "esbenp.prettier-vscode",
|
|
"editor.linkedEditing": true,
|
|
"terminal.integrated.cursorStyleInactive": "line",
|
|
"workbench.iconTheme": "material-icon-theme",
|
|
"workbench.colorTheme": "Default Dark+",
|
|
"editor.codeActionsOnSave": [
|
|
"source.addMissingImports",
|
|
"source.organizeImports",
|
|
"source.fixAll.eslint",
|
|
"source.fixAll.stylelint"
|
|
],
|
|
"files.exclude": {
|
|
"**/.git": true,
|
|
"**/.svn": true,
|
|
"**/.hg": true,
|
|
"**/CVS": true,
|
|
"**/.DS_Store": true,
|
|
"**/Thumbs.db": true
|
|
},
|
|
"files.trimTrailingWhitespace": true,
|
|
"files.trimFinalNewlines": true,
|
|
"material-icon-theme.files.color": "#42a5f5",
|
|
"material-icon-theme.folders.theme": "specific",
|
|
"material-icon-theme.activeIconPack": "react",
|
|
"material-icon-theme.folders.color": "#42a5f5",
|
|
"prettier.arrowParens": "always",
|
|
"prettier.tabWidth": 2,
|
|
"prettier.singleQuote": true,
|
|
"prettier.semi": true,
|
|
"prettier.printWidth": 175,
|
|
"eslint.validate": ["javascript", "javascriptvue"],
|
|
"explorer.compactFolders": false,
|
|
"terminal.integrated.env.windows": {},
|
|
"git.enableSmartCommit": true,
|
|
"console-ninja.outputMode": "In View",
|
|
"console-ninja.fontSize": 12,
|
|
"git.autofetch": true,
|
|
"git.confirmSync": false,
|
|
"javascript.updateImportsOnFileMove.enabled": "always",
|
|
"console-ninja.featureSet": "Community",
|
|
"typescript.updateImportsOnFileMove.enabled": "always",
|
|
"editor.cursorSmoothCaretAnimation": "on",
|
|
"editor.fontLigatures": true,
|
|
"todo-tree.tree.showBadges": true,
|
|
"todo-tree.tree.showCountsInTree": true,
|
|
"terminal.integrated.enableImages": true,
|
|
"figma.autocompleteBlocks": true,
|
|
"figma.assetExportDirectory": "src/assets",
|
|
"gitlens.gitCommands.skipConfirmations": ["fetch:command", "switch:command"],
|
|
"diffEditor.ignoreTrimWhitespace": false,
|
|
"svg.preview.mode": "svg",
|
|
"[svg]": {
|
|
"editor.defaultFormatter": "jock.svg"
|
|
},
|
|
"[vue]": {
|
|
"editor.defaultFormatter": "esbenp.prettier-vscode"
|
|
},
|
|
"workbench.tree.indent": 16,
|
|
"window.zoomLevel": -1,
|
|
"git.ignoreRebaseWarning": true,
|
|
"editor.largeFileOptimizations": false
|
|
}
|