floranet/.vscode/settings.json

72 lines
2.5 KiB
JSON

{
"editor.bracketPairColorization.enabled": true,
"editor.guides.bracketPairs": true,
"editor.formatOnSave": true,
"editor.defaultFormatter": "esbenp.prettier-vscode",
"editor.codeActionsOnSave": [
"source.addMissingImports",
"source.organizeImports",
"source.fixAll.eslint"
],
"eslint.validate": ["javascript", "javascriptreact", "typescript", "vue"],
"typescript.tsdk": "node_modules/typescript/lib",
"editor.formatOnPaste": true,
"editor.minimap.enabled": false,
"editor.tabSize": 2,
"editor.fontSize": 14,
"editor.fontWeight": "normal",
"editor.guides.highlightActiveBracketPair": true,
"editor.bracketPairColorization.independentColorPoolPerBracketType": true,
"editor.guides.bracketPairsHorizontal": true,
"editor.acceptSuggestionOnEnter": "smart",
"editor.tabCompletion": "on",
"editor.linkedEditing": true,
"terminal.integrated.cursorStyleInactive": "line",
"files.exclude": {
"**/.git": true,
"**/.svn": true,
"**/.hg": true,
"**/CVS": true,
"**/.DS_Store": true,
"**/Thumbs.db": true
},
"files.trimTrailingWhitespace": true,
"files.trimFinalNewlines": true,
"prettier.arrowParens": "always",
"prettier.tabWidth": 2,
"prettier.singleQuote": true,
"prettier.semi": true,
"prettier.printWidth": 175,
"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,
"errorLens.excludeBySource": ["eslint(react/prop-types)"],
"javascript.updateImportsOnFileMove.enabled": "always",
"console-ninja.featureSet": "Community",
"liveServer.settings.donotShowInfoMsg": true,
"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",
"liveServer.settings.donotVerifyTags": true,
"gitlens.gitCommands.skipConfirmations": ["fetch:command", "switch:command"],
"symbols.hidesExplorerArrows": false,
"editor.fontFamily": "CaskaydiaCove Nerd Font",
"diffEditor.ignoreTrimWhitespace": false,
"terminal.integrated.fontFamily": "CaskaydiaCove Nerd Font",
"svg.preview.mode": "svg",
"[svg]": {
"editor.defaultFormatter": "jock.svg"
},
"workbench.tree.indent": 16,
"git.ignoreRebaseWarning": true
}