Created
July 29, 2019 04:53
-
-
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...?
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Show hidden characters
| { | |
| "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