Skip to content

Commit

Permalink
fix eslint func-names errors
Browse files Browse the repository at this point in the history
  • Loading branch information
redmunds committed May 25, 2019
1 parent ea9e513 commit a2c3bdd
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions .eslintrc.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,5 +12,6 @@ parserOptions:
rules:
no-param-reassign: 0
no-plusplus: 0
func-names: ["error", "never"]
indent: ["error", 4]
max-len: ["error", { "ignoreComments": true, "code": 120 }]
2 changes: 1 addition & 1 deletion balancetext.js
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,7 @@
function debounce(func, threshold, execAsap, ...args) {
let timeout;

return function debounced() {
return function () {
const obj = this;

function delayed() {
Expand Down

0 comments on commit a2c3bdd

Please sign in to comment.