floranet/.vscode/settings.json

86 lines
2.8 KiB
JSON
Raw Normal View History

2023-12-11 18:19:05 +00:00
{
"editor.formatOnSave": true,
"editor.formatOnPaste": true,
"editor.minimap.enabled": false,
"editor.tabSize": 2,
"editor.fontSize": 14,
"editor.fontWeight": "normal",
"editor.guides.highlightActiveBracketPair": true,
2024-01-03 17:18:03 +00:00
"editor.bracketPairColorization.enabled": true,
2023-12-11 18:19:05 +00:00
"editor.bracketPairColorization.independentColorPoolPerBracketType": true,
2024-01-03 17:18:03 +00:00
"editor.guides.bracketPairs": true,
2023-12-11 18:19:05 +00:00
"editor.guides.bracketPairsHorizontal": true,
"editor.acceptSuggestionOnEnter": "smart",
"editor.tabCompletion": "on",
2024-01-03 17:18:03 +00:00
"editor.defaultFormatter": "esbenp.prettier-vscode",
2023-12-11 18:19:05 +00:00
"editor.linkedEditing": true,
"terminal.integrated.cursorStyleInactive": "line",
2024-01-03 17:18:03 +00:00
"workbench.iconTheme": "material-icon-theme",
"workbench.colorTheme": "Default Dark+",
2024-01-24 18:52:24 +00:00
"editor.codeActionsOnSave": [
"source.addMissingImports",
"source.organizeImports",
"source.fixAll.eslint",
"source.fixAll.stylelint"
],
2023-12-11 18:19:05 +00:00
"files.exclude": {
"**/.git": true,
"**/.svn": true,
"**/.hg": true,
"**/CVS": true,
"**/.DS_Store": true,
"**/Thumbs.db": true
},
"files.trimTrailingWhitespace": true,
"files.trimFinalNewlines": true,
2024-01-03 17:18:03 +00:00
"material-icon-theme.files.color": "#42a5f5",
"material-icon-theme.folders.theme": "specific",
"material-icon-theme.activeIconPack": "react",
"material-icon-theme.folders.color": "#42a5f5",
2023-12-11 18:19:05 +00:00
"prettier.arrowParens": "always",
"prettier.tabWidth": 2,
"prettier.singleQuote": true,
"prettier.semi": true,
"prettier.printWidth": 175,
2024-01-03 17:18:03 +00:00
"eslint.validate": ["javascript", "javascriptvue"],
2023-12-11 18:19:05 +00:00
"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",
2024-01-03 17:18:03 +00:00
"editor.codeActionsOnSave": [
"source.addMissingImports",
"source.organizeImports",
"source.fixAll.eslint"
],
2023-12-11 18:19:05 +00:00
"gitlens.gitCommands.skipConfirmations": ["fetch:command", "switch:command"],
"diffEditor.ignoreTrimWhitespace": false,
"svg.preview.mode": "svg",
"[svg]": {
"editor.defaultFormatter": "jock.svg"
},
2024-01-03 17:18:03 +00:00
"[vue]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
2023-12-11 18:19:05 +00:00
"workbench.tree.indent": 16,
2024-01-24 18:52:24 +00:00
"window.zoomLevel": -1,
2024-01-03 17:18:03 +00:00
"git.ignoreRebaseWarning": true,
"editor.largeFileOptimizations": false,
"[javascript]": {
"editor.defaultFormatter": "vscode.typescript-language-features"
}
2023-12-11 18:19:05 +00:00
}