Ensure to lint as many files as possible (#854)

* Lint everything, including bins w/out extension

* Apply eslint --fix to all linted files

* Manually fix all remaining lint rule violations

* Remove ESLint inline config
This commit is contained in:
Raphael von der Grün
2019-10-21 18:26:17 +02:00
committed by GitHub
parent c35a990c09
commit 5dfa995a4b
11 changed files with 147 additions and 153 deletions
+2 -5
View File
@@ -260,13 +260,10 @@ describe('android project handler', function () {
});
describe('of <asset> elements', function () {
var asset = { src: 'www/dummyPlugin.js', target: 'foo/dummy.js' };
var wwwDest; /* eslint no-unused-vars: "off" */
var platformWwwDest; /* eslint no-unused-vars: "off" */
var asset;
beforeEach(function () {
wwwDest = path.resolve(dummyProject.www, asset.target);
platformWwwDest = path.resolve(dummyProject.platformWww, asset.target);
asset = { src: 'www/dummyPlugin.js', target: 'foo/dummy.js' };
});
it('Test#015 : should put asset to both www and platform_www when options.usePlatformWww flag is specified', function () {