Skip to content

Commit

Permalink
Remove ESLint no-use-before-define (#901)
Browse files Browse the repository at this point in the history
* Remove no-use-before-define

* Not for functions
  • Loading branch information
ograu committed Dec 11, 2019
1 parent 7993b05 commit ec9b7af
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 @@ -135,7 +135,7 @@
"no-shadow-restricted-names": 2,
"no-undef": 2,
"no-undef-init": 2,
"no-use-before-define": 2,
"no-use-before-define": [2, { "functions": false }],
"constructor-super": 2,
"no-class-assign": 2,
"no-confusing-arrow": 2,
Expand Down

0 comments on commit ec9b7af

Please sign in to comment.