This repository has been archived on 2025-05-31. You can view files and clone it, but cannot push or open issues or pull requests.
xyter/.vscode/settings.json
Vermium Sifell bb2b8650ae
Fix missing packages and make signing commits as default in VS Code (#491) (#493)
* Added missing package and improve user/dev experience (#486)

* fix: 📦 add date-fns

Added missing date-fns to dependency list

* style(git): 🧑‍💻 start using Conventional Commits

Started using a commit convention called Conventional Commits (conventionalcommits.org)

* chore(github): 🚸 Remove issue templates

Removed issue templates since they confuses people and makes less people go through and make an issue

* feat(git): 🧑‍💻 vs code git commit signing (#488)

Enable commit signing in VS Code by default
2022-11-04 14:13:44 +01:00

37 lines
1.1 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"]
}