🔧 updated vscode configurations

This commit is contained in:
Axel Olausson Holtenäs 2022-04-11 22:07:11 +02:00
parent 47b651be1e
commit 5cb1bf3d50
No known key found for this signature in database
GPG key ID: 9347A5E873995701
2 changed files with 72 additions and 81 deletions

View file

@ -1,53 +1,52 @@
{ {
// See https://go.microsoft.com/fwlink/?LinkId=827846 to learn about workspace recommendations. // See https://go.microsoft.com/fwlink/?LinkId=827846 to learn about workspace recommendations.
// Extension identifier format: ${publisher}.${name}. Example: vscode.csharp // Extension identifier format: ${publisher}.${name}. Example: vscode.csharp
// List of extensions which should be recommended for users of this workspace. // List of extensions which should be recommended for users of this workspace.
"recommendations": [ "recommendations": [
"2gua.rainbow-brackets", "abrahamwilliam007.es7-javascript-class-snippets",
"abrahamwilliam007.es7-javascript-class-snippets", "christian-kohler.npm-intellisense",
"christian-kohler.npm-intellisense", "christian-kohler.path-intellisense",
"christian-kohler.path-intellisense", "dbaeumer.vscode-eslint",
"dbaeumer.vscode-eslint", "donjayamanne.githistory",
"donjayamanne.githistory", "eamodio.gitlens",
"eamodio.gitlens", "esbenp.prettier-vscode",
"esbenp.prettier-vscode", "github.github-vscode-theme",
"github.github-vscode-theme", "irongeek.vscode-env",
"irongeek.vscode-env", "xabikos.javascriptsnippets",
"xabikos.javascriptsnippets", "wix.vscode-import-cost",
"wix.vscode-import-cost", "vscode-icons-team.vscode-icons",
"vscode-icons-team.vscode-icons", "visualstudioexptteam.vscodeintellicode",
"visualstudioexptteam.vscodeintellicode", "teledemic.branch-warnings",
"teledemic.branch-warnings", "tabnine.tabnine-vscode",
"tabnine.tabnine-vscode", "streetsidesoftware.code-spell-checker",
"streetsidesoftware.code-spell-checker", "seatonjiang.gitmoji-vscode",
"seatonjiang.gitmoji-vscode", "sburg.vscode-javascript-booster",
"sburg.vscode-javascript-booster", "kisstkondoros.vscode-codemetrics",
"kisstkondoros.vscode-codemetrics", "mgmcdermott.vscode-language-babel",
"mgmcdermott.vscode-language-babel", "mhutchie.git-graph",
"mhutchie.git-graph", "mikestead.dotenv",
"mikestead.dotenv", "mongodb.mongodb-vscode",
"mongodb.mongodb-vscode", "ms-vscode-remote.remote-wsl-recommender",
"ms-vscode-remote.remote-wsl-recommender", "ms-vscode.js-debug",
"ms-vscode.js-debug", "ms-vscode.js-debug-companion",
"ms-vscode.js-debug-companion", "ms-vscode.references-view",
"ms-vscode.references-view", "ms-vscode.vscode-js-profile-table",
"ms-vscode.vscode-js-profile-table", "pflannery.vscode-versionlens",
"pflannery.vscode-versionlens", "adpyke.codesnap",
"adpyke.codesnap", "anan.devdocstab",
"anan.devdocstab", "axosoft.gitkraken-glo",
"axosoft.gitkraken-glo", "gruntfuggly.todo-tree",
"gruntfuggly.todo-tree", "kiteco.kite",
"kiteco.kite", "lkytal.pomodoro",
"lkytal.pomodoro", "wayou.vscode-todo-highlight",
"wayou.vscode-todo-highlight", "johnpapa.vscode-peacock",
"johnpapa.vscode-peacock", "stepsize.stepsize",
"stepsize.stepsize", "nicoespeon.abracadabra",
"nicoespeon.abracadabra", "sonarsource.sonarlint-vscode",
"sonarsource.sonarlint-vscode", "nicoespeon.hocus-pocus",
"nicoespeon.hocus-pocus", "aaron-bond.better-comments",
"aaron-bond.better-comments", "oouo-diogo-perdigao.docthis"
"oouo-diogo-perdigao.docthis" ],
], // List of extensions recommended by VS Code that should not be recommended for users of this workspace.
// List of extensions recommended by VS Code that should not be recommended for users of this workspace. "unwantedRecommendations": []
"unwantedRecommendations": [] }
}

48
.vscode/settings.json vendored
View file

@ -1,34 +1,26 @@
{ {
"editor.defaultFormatter": "esbenp.prettier-vscode", "editor.bracketPairColorization.enabled": true,
"editor.wordWrapColumn": 100,
"editor.tabSize": 2,
"editor.formatOnSave": true,
"files.eol": "\n",
"prettier.endOfLine": "lf",
"prettier.singleQuote": true,
"prettier.trailingComma": "es5",
"peacock.color": "#369",
"editor.codeActionsOnSave": ["source.formatDocument", "source.fixAll.eslint"], "editor.codeActionsOnSave": ["source.formatDocument", "source.fixAll.eslint"],
"cSpell.words": [ "editor.cursorBlinking": "phase",
"Controlpanel", "editor.cursorSmoothCaretAnimation": true,
"discordjs", "editor.defaultFormatter": "esbenp.prettier-vscode",
"hoster",
"pino",
"runned",
"Sifell",
"Timout",
"upsert",
"uuidv",
"Vermium",
"Xyter",
"Xyter's",
"Zyner"
],
"editor.fontFamily": "Cascadia Code", "editor.fontFamily": "Cascadia Code",
"editor.fontLigatures": true, "editor.fontLigatures": true,
"git.enableCommitSigning": true, "editor.formatOnSave": true,
"typescript.tsdk": "node_modules\\typescript\\lib", "editor.guides.bracketPairs": "active",
"[typescript]": { "editor.minimap.maxColumn": 200,
"editor.defaultFormatter": "esbenp.prettier-vscode" "editor.minimap.renderCharacters": false,
"editor.minimap.showSlider": "always",
"editor.tabSize": 2,
"editor.wordWrapColumn": 100,
"files.eol": "\n",
"files.trimTrailingWhitespace": true,
"cSpell.customDictionaries": {
"custom-dictionary-workspace": {
"name": "custom-dictionary-workspace",
"path": "${workspaceFolder:xyter}/.cspell/custom-dictionary-workspace.txt",
"addWords": true,
"scope": "workspace"
}
} }
} }