Linted all pirate, git, tmdb and searchHistory scripts.

This commit is contained in:
2018-02-07 13:51:42 +01:00
parent a8ec7acff5
commit 81aeed86ef
4 changed files with 98 additions and 101 deletions

View File

@@ -1,10 +1,9 @@
const assert = require('assert');
class GitRepository {
dumpHook(body) {
console.log(body);
}
static dumpHook(body) {
/* eslint-disable no-console */
console.log(body);
}
}
module.exports = GitRepository;
module.exports = GitRepository;