jslint-lite (2020.8.19)
this zero-dependency package will provide browser-compatible versions of jslint (v2020.7.2) and csslint (v2018.2.25), with working web-demo
download standalone app
run browser-tests
edit or paste script below to
jslint
/*jslint browser: true, */ const message = "hello"; console.log(message); console.log(null);
jslint autofix
edit or paste script below to
csslint
/*csslint box-sizing: false, */ body { box-sizing: border-box; margin: 0px; }
stderr and stdout
jslint inputCsslint1.css 1 warning - zero-units - Values of 0 shouldn't have units specified. You don't need to specify units when a value is 0. // line 6, column 13 margin: 0px; jslint inputJslint1.js 1 Undeclared 'console'. // line 5, column 2 console.log(message); 2 Undeclared 'console'. // line 6, column 2 console.log(null);
[ this app was created with
utility2
]