DEV Community

Domingos Manuel Capitango
Domingos Manuel Capitango

Posted on

Setting.json - VSCODE.

Here is my setting.json of my VSCODE, I hope you like it, it is the best way and the best configuration for VSCODE.

{
"terminal.integrated.fontSize": 14,

"workbench.iconTheme": "material-icon-theme",
"workbench.startupEditor": "newUntitledFile",

"editor.tabSize": 1,
"editor.fontSize": 13,
"editor.lineHeight": 25,
"editor.fontFamily": "Fira Code",
"editor.fontLigatures": true,

"files.exclude": {
"/.git": true,
"
/.svn": true,
"/.hg": true,
"
/CVS": true,
"**/.DS_Store": true,
"node_modules": true
},

"explorer.compactFolders": false,
"editor.renderLineHighlight": "gutter",
"workbench.editor.labelFormat": "short",
"extensions.ignoreRecommendations": true,

"javascript.updateImportsOnFileMove.enabled": "always",
"typescript.updateImportsOnFileMove.enabled": "never",

"breadcrumbs.enabled": true,
"editor.parameterHints.enabled": false,
"explorer.confirmDragAndDrop": false,
"explorer.confirmDelete": false,

"editor.rulers": [80, 120],

"editor.codeActionsOnSave": {
"source.fixAll.eslint": true
},

"files.associations": {
".sequelizerc": "javascript",
".stylelintrc": "json",
".prettierrc": "json"
},

"window.zoomLevel": 0,

"emmet.syntaxProfiles": { "javascript": "jsx" },
"emmet.includeLanguages": { "javascript": "javascriptreact" },

"gitlens.codeLens.recentChange.enabled": false,
"gitlens.codeLens.authors.enabled": false,
"gitlens.codeLens.enabled": false,

"git.enableSmartCommit": true,
"terminal.integrated.shell.osx": "/bin/zsh",
"liveshare.featureSet": "insiders",

"typescript.tsserver.log": "verbose",
"javascript.suggest.autoImports": true,
"typescript.suggest.autoImports": true,
"liveServer.settings.donotShowInfoMsg": true,
// "material-icon-theme.activeIconPack": "nest",
"screencastMode.onlyKeyboardShortcuts": true,

"material-icon-theme.folders.associations": {
"infra": "app",
"entities": "class",
"schemas": "class",
"typeorm": "database",
"repositories": "mappings",
"http": "container",
"migrations": "tools",
"modules": "components",
"implementations": "core",
"dtos": "typescript",
"fakes": "mock",
"websockets": "pipe",
"protos": "pipe",
"grpc": "pipe"
},

"material-icon-theme.files.associations": {
"ormconfig.json": "database",
"tsconfig.json": "tune",
"*.proto": "3d"
},

"workbench.colorTheme": "Omni",
"editor.formatOnSave": true,
"colorize.languages": [
"javascript",
"typescript",
"javascriptreact",
"typescriptreact",
"json",
"html",
"css"
]
}

Top comments (0)