Skip to content
This repository has been archived by the owner on Dec 3, 2021. It is now read-only.

Commit

Permalink
Fixed eslint
Browse files Browse the repository at this point in the history
  • Loading branch information
Blackhawk-TA committed Jul 17, 2019
1 parent f775f8f commit 3a9868c
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion .eslintrc
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,7 @@
"allowTemplateLiterals": true,
"avoidEscape": true
}],
"semi": ["error", "always"]
"semi": ["error", "always"],
"space-in-parens": ["error", "never"]
}
}
2 changes: 1 addition & 1 deletion src/wrappers/discord/DiscordEventHandler.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import {EventHandler} from "../../utils/EventHandler";
import {EventEmitter} from "events";

export class DiscordEventHandler extends EventHandler{
export class DiscordEventHandler extends EventHandler {
constructor(name: string, events: object) {
super(name, events);
}
Expand Down

0 comments on commit 3a9868c

Please sign in to comment.