Skip to content

Instantly share code, notes, and snippets.

@evdama
Created July 29, 2019 04:53
Show Gist options
  • Select an option

  • Save evdama/93ba761a566af9bb77fbeffa79a6a1b1 to your computer and use it in GitHub Desktop.

Select an option

Save evdama/93ba761a566af9bb77fbeffa79a6a1b1 to your computer and use it in GitHub Desktop.
not running in vscode, show output channel from command palette says: not running but it is switched on so...?
{
"autoFixOnSave": "true",
"env": {
"browser": true,
"es6": true,
"node": true
},
"extends": ["eslint:recommended"],
"globals": {
"Atomics": "readonly",
"SharedArrayBuffer": "readonly"
},
"parserOptions": {
"ecmaVersion": 2019,
"sourceType": "module"
},
"rules": {
"extends": "eslint:recommended",
"no-console": "off",
"no-unused-vars": [
"error",
{
"args": "none"
}
],
"indent": ["error", 2],
"linebreak-style": ["error", "unix"],
"quotes": ["error", "single"],
"semi": ["error", "always"]
},
"run": "onSave",
"root": true,
"plugins": ["prettier", "svelte3"],
"validate": [
{
"language": "html",
"autoFix": true
},
{
"language": "javascript",
"autoFix": true
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment