javascript linting

Solutions on MaxInterview for javascript linting by the best coders in the world

showing results for - "javascript linting"
Lotta
09 Nov 2017
1// alternative linting for javascript developer using standard zero configuration follow this step by step
2 
31.install standard to development mode - npm i standard -D or install standard to global - npm i standard -g
42.install standard extension for vscode
53.add this configuration to vscode json config
6  "standard.enable": true,
7  "standard.run": "onSave",
8  "standard.validate": ["javascript", "javascriptreact", "typescript", "typescriptreact"],
9  "standard.autoFixOnSave": true,
10  "standard.engine": "standard",
114. enjoy linting is active