De-lint a few more files

& remove them from the ignored list
This commit is contained in:
David Baker 2019-01-11 13:54:11 +00:00
parent e0bc0494fa
commit fe4778b28b
4 changed files with 8 additions and 7 deletions

View file

@ -60,8 +60,8 @@ const PROVIDER_COMPLETION_TIMEOUT = 3000;
export default class Autocompleter {
constructor(room: Room) {
this.room = room;
this.providers = PROVIDERS.map((p) => {
return new p(room);
this.providers = PROVIDERS.map((Prov) => {
return new Prov(room);
});
}