43 lines
1.3 KiB
JSON
43 lines
1.3 KiB
JSON
{
|
|
"editor.bracketPairColorization.enabled": true,
|
|
"editor.cursorBlinking": "phase",
|
|
"editor.cursorSmoothCaretAnimation": true,
|
|
"editor.defaultFormatter": "esbenp.prettier-vscode",
|
|
"editor.fontLigatures": true,
|
|
"editor.formatOnSave": true,
|
|
"editor.guides.bracketPairs": "active",
|
|
"editor.minimap.maxColumn": 200,
|
|
"editor.minimap.renderCharacters": false,
|
|
"editor.minimap.showSlider": "always",
|
|
"editor.tabSize": 2,
|
|
"git.enableCommitSigning": true,
|
|
"editor.wordWrapColumn": 100,
|
|
"files.eol": "\n",
|
|
"files.trimTrailingWhitespace": true,
|
|
"editor.codeActionsOnSave": {
|
|
"source.organizeImports": true,
|
|
"source.formatDocument": true,
|
|
"source.fixAll.eslint": true
|
|
},
|
|
"cSpell.customDictionaries": {
|
|
"custom-dictionary-workspace": {
|
|
"name": "custom-dictionary-workspace",
|
|
"path": "${workspaceFolder:xyter}/.cspell/custom-dictionary-workspace.txt",
|
|
"addWords": true,
|
|
"scope": "workspace"
|
|
}
|
|
},
|
|
"[dotenv]": {
|
|
"editor.defaultFormatter": "IronGeek.vscode-env"
|
|
},
|
|
"[prisma]": {
|
|
"editor.defaultFormatter": "Prisma.prisma"
|
|
},
|
|
"conventionalCommits.scopes": ["git", "github", "prisma"],
|
|
"[dockerfile]": {
|
|
"editor.defaultFormatter": "foxundermoon.shell-format"
|
|
},
|
|
"[sql]": {
|
|
"editor.defaultFormatter": "sqlfluff.vscode-sqlfluff"
|
|
}
|
|
}
|