Skip to content

Instantly share code, notes, and snippets.

@cweave
Last active April 7, 2020 15:31
Show Gist options
  • Save cweave/20c4d9f780b74c5d2cf46d2f43531ad6 to your computer and use it in GitHub Desktop.
Save cweave/20c4d9f780b74c5d2cf46d2f43531ad6 to your computer and use it in GitHub Desktop.
// personal vscode settings
{
"todo-tree.tree.showScanModeButton": false,
"workbench.iconTheme": "material-icon-theme",
"workbench.colorTheme": "Night Owl",
"editor.wordWrap": "on",
"editor.fontFamily": "JetBrains Mono",
"editor.fontLigatures": true,
"todo-tree.general.tags": [
"TODO",
"FIXME",
"REVIEW"
],
"todohighlight.keywords": [
{
"text": "REVIEW:",
"color": "#000",
"backgroundColor": "#91faf2",
}
],
"git.autofetch": true,
"diffEditor.ignoreTrimWhitespace": false,
"extensions.autoUpdate": false
}
// source controlled settings
{
"css.validate": false,
"less.validate": false,
"scss.validate": false,
"editor.formatOnSave": false,
"eslint.validate": [
{
"language": "vue",
"autoFix": true
},
{
"language": "html",
"autoFix": true
},
{
"language": "javascript",
"autoFix": true
},
{
"language": "typescript",
"autoFix": true
}
],
"files.exclude": {
"**/.git": true,
"**/.DS_Store": true,
"**/node_modules": true,
"**/bin": true,
"**/obj": true,
"Properties": true,
},
"jest.pathToConfig": "./jest.config.js",
"jest.pathToJest": "./node_modules/.bin/jest --runInBand",
"jest.autoEnable": true,
"jest.debugCodeLens.showWhenTestStateIn": [
"fail",
"unknown",
"pass"
],
"vetur.validation.template": false,
"vetur.experimental.templateInterpolationService": false,
"editor.codeActionsOnSave": {
"source.fixAll.eslint": true
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment