diff --git a/lib/readline-sync.js b/lib/readline-sync.js index cfed49a..455ee22 100644 --- a/lib/readline-sync.js +++ b/lib/readline-sync.js @@ -483,7 +483,7 @@ function margeOptions() { var value; if (!optionsPart.hasOwnProperty(optionName)) { return; } value = optionsPart[optionName]; - switch (optionName) { // eslint-disable-line default-case + switch (optionName) { // _readlineSync <- * * -> defaultOptions // ================ string case 'mask': // * * @@ -533,6 +533,7 @@ function margeOptions() { case 'display': // * options[optionName] = value != null ? value : ''; // eslint-disable-line eqeqeq break; + // no default } }); return options; @@ -771,7 +772,7 @@ function getValidLine(options) { if (!forceNext && options.cd && res) { args = parseCl(res); - switch (args[0].toLowerCase()) { // eslint-disable-line default-case + switch (args[0].toLowerCase()) { case 'cd': if (args[1]) { try { @@ -786,6 +787,7 @@ function getValidLine(options) { addDisplay(process.cwd()); forceNext = true; break; + // no default } }