Skip to content

Commit

Permalink
Linting for build process: enable eslint no-fallthrough option (pull #…
Browse files Browse the repository at this point in the history
  • Loading branch information
nschonni authored and mcking65 committed Nov 8, 2019
1 parent 2f5ae53 commit b04f43d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
3 changes: 1 addition & 2 deletions .eslintrc.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@
},
"rules": {
"no-unused-vars": 0,
"no-undef": 0,
"no-fallthrough": 0
"no-undef": 0
}
}
1 change: 1 addition & 0 deletions examples/combobox/aria1.1pattern/js/grid-combobox.js
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,7 @@ aria.GridCombobox.prototype.checkKey = function (evt) {
evt.preventDefault();
return;
}
// fall through
default:
this.updateResults();
}
Expand Down

0 comments on commit b04f43d

Please sign in to comment.