Skip to content

Latest commit

 

History

History
17 lines (15 loc) · 275 Bytes

vscode.md

File metadata and controls

17 lines (15 loc) · 275 Bytes

VSCode config

to configure you ESLint editor plugin to lint .js and .ts, add the following to your global or project settings.json:

"eslint.options": {
  "extensions": [
    ".js",
    ".ts",
  ]
},
"eslint.validate": [
  "javascript",
  "typescript",
]