Skip to content

Instantly share code, notes, and snippets.

@InKolev
Created November 17, 2016 12:25
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save InKolev/bd147b13ab41e87a1a7facad6b960820 to your computer and use it in GitHub Desktop.
Save InKolev/bd147b13ab41e87a1a7facad6b960820 to your computer and use it in GitHub Desktop.
// Place your settings in this file to overwrite default and user settings.
{
"terminal.external.windowsExec": "git-bash",
"eslint.enable": true,
"eslint.options": {
"parserOptions": {
"ecmaVersion": 6,
"sourceType": "es6",
"env": {
"es6": true
}
},
"rules": {
"eqeqeq": "warn",
"quotes": [
"warn",
"single"
],
"strict": "warn",
"no-dupe-args": "error",
"no-dupe-keys": "error",
"no-extra-semi": "warn",
"no-func-assign": "error",
"no-invalid-regexp": "error",
"no-unreachable": "warn",
"use-isnan": "error",
"valid-typeof": "error",
"consistent-return": "warn",
"curly": "warn",
"default-case": "error",
"no-alert": "warn",
"no-else-return": "warn",
"no-eval": "warn",
"no-extend-native": "warn",
"no-loop-func": "warn",
"no-native-reassign": "warn",
"no-useless-escape": "warn",
"no-void": "warn",
"no-with": "warn",
"no-unused-vars": "warn"
}
}
,
"window.zoomLevel": 3
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment