Remove unnecessary eslint-disable directives

This commit is contained in:
Labhansh Agrawal 2020-03-02 23:29:56 +05:30 committed by Benjamin Staneck
parent 833b222e2a
commit 039b90aa65
26 changed files with 1 additions and 84 deletions

View file

@ -89,7 +89,6 @@ const _importConf = () => {
try {
migrateHyper2Config();
} catch (err) {
//eslint-disable-next-line no-console
console.error(err);
}
@ -102,7 +101,6 @@ const _importConf = () => {
const mapping = JSON.parse(content) as Record<string, string | string[]>;
_defaultCfg.keymaps = mapping;
} catch (err) {
//eslint-disable-next-line no-console
console.error(err);
}
@ -115,7 +113,6 @@ const _importConf = () => {
return {userCfg: defaultCfgRaw, defaultCfg: _defaultCfg};
}
} catch (err) {
//eslint-disable-next-line no-console
console.log(err);
}
};