- Linting (ESLint): Per latest ash-nazg/eslint

- npm: Update devDeps
This commit is contained in:
Brett Zamir
2019-11-23 19:17:32 +08:00
parent 9f478a3757
commit e1671cc372
7 changed files with 629 additions and 558 deletions

View File

@@ -37,10 +37,9 @@ const mockPathActions = {resetOrientation () { /* */ }};
let mockHistorySubCommands = [];
const mockHistory = {
BatchCommand: class {
constructor () {
return {
addSubCommand (cmd) { mockHistorySubCommands.push(cmd); }
};
// eslint-disable-next-line class-methods-use-this
addSubCommand (cmd) {
mockHistorySubCommands.push(cmd);
}
},
RemoveElementCommand: class {