Right now only files in the browser/adapters/ folder are being linted:
|
"lint": "eslint browser/adapters/*.js *.js", |
That glob should be expanded to something like: *.js browser/*.js browser/**/*.js
There are a bunch of linting errors in the browser/*.js files, so those will need to be fixed.
Right now only files in the
browser/adapters/folder are being linted:funcunit/package.json
Line 34 in c29154f
That glob should be expanded to something like:
*.js browser/*.js browser/**/*.jsThere are a bunch of linting errors in the
browser/*.jsfiles, so those will need to be fixed.