Skip to content

Instantly share code, notes, and snippets.

@aadityamaheshwari
Last active September 28, 2020 13:47
Show Gist options
  • Save aadityamaheshwari/037932bfc9010ca0a2336c8687754b81 to your computer and use it in GitHub Desktop.
Save aadityamaheshwari/037932bfc9010ca0a2336c8687754b81 to your computer and use it in GitHub Desktop.
VS Code settings October 2020
{
"css.lint.duplicateProperties": "warning",
"css.lint.compatibleVendorPrefixes": "warning",
"css.lint.boxModel": "warning",
"css.lint.float": "warning",
"css.lint.idSelector": "warning",
"css.lint.ieHack": "warning",
"css.lint.important": "warning",
"css.lint.importStatement": "warning",
"css.lint.universalSelector": "warning",
"css.lint.unknownVendorSpecificProperties": "warning",
"css.lint.zeroUnits": "warning",
"editor.suggestSelection": "first",
"editor.formatOnSave": true,
"editor.tabSize": 2,
"editor.fontSize": 14,
"editor.renderWhitespace": "trailing",
"editor.wordWrap": "wordWrapColumn",
"editor.fontFamily": "'cascadia code'",
"editor.fontLigatures": true,
"editor.autoClosingBrackets": "always",
"editor.autoClosingQuotes": "always",
"editor.formatOnPaste": true,
"editor.renderFinalNewline": true,
"eslint.alwaysShowStatus": true,
"eslint.enable": true,
"eslint.format.enable": true,
"files.autoSave": "afterDelay",
"files.autoSaveDelay": 5000,
"files.trimTrailingWhitespace": true,
"files.insertFinalNewline": true,
"files.trimFinalNewlines": true,
"files.exclude": {
"**/.git": true,
"**/.svn": true,
"**/.hg": true,
"**/CVS": true,
"**/.DS_Store": true
},
"html-css-class-completion.enableEmmetSupport": true,
"emmet.includeLanguages": {
"vue-html": "html",
"javascript": "javascriptreact"
},
"html.format.endWithNewline": true,
"html.format.indentInnerHtml": true,
"html.format.indentHandlebars": true,
"json.format.enable": true,
"ruby.codeCompletion": "rcodetools",
"ruby.format": "rubocop",
"ruby.intellisense": "rubyLocate",
"ruby.useLanguageServer": true,
"ruby.useBundler": true,
"rust.all_features": true,
"search.exclude": {
"**/node_modules": true,
"**/bower_components": true,
"**/*.code-search": true
},
"terminal.integrated.cursorStyle": "line",
"terminal.integrated.cursorBlinking": true,
"terminal.integrated.cursorWidth": 2,
"terminal.integrated.fontFamily": "cascadia code",
"terminal.integrated.lineHeight": 1,
"terminal.integrated.fontSize": 12,
"vsintellicode.modify.editor.suggestSelection": "automaticallyOverrodeDefaultValue",
"vsicons.dontShowNewVersionMessage": true,
"workbench.startupEditor": "none",
"workbench.iconTheme": "vscode-icons",
"workbench.colorTheme": "One Dark Pro",
"workbench.preferredDarkColorTheme": "One Dark Pro",
"workbench.preferredLightColorTheme": "One Dark Pro",
"java.codeGeneration.generateComments": true,
"oneDarkPro.editorTheme": "oneDarkPro"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment