Skip to content

Commit

Permalink
chore: fix eslint no-use-before-define
Browse files Browse the repository at this point in the history
  • Loading branch information
yarastqt committed Dec 20, 2020
1 parent 74e2aae commit e1095d3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .eslintrc
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@
"semi": [2, "never"],
"semi-spacing": [2, { "before": false, "after": true }],
"wrap-iife": [2, "inside"],
"no-use-before-define": [2, { "functions": true, "classes": true, "variables": true }],
"no-use-before-define": [2, { "functions": false, "classes": true, "variables": true }],
"no-caller": 2,
"no-cond-assign": [2, "except-parens"],
"no-constant-condition": 2,
Expand Down

0 comments on commit e1095d3

Please sign in to comment.