Skip to content

Commit

Permalink
chore(lint): enforce no-use-before-define on non-functions
Browse files Browse the repository at this point in the history
  • Loading branch information
JaKXz committed Nov 18, 2016
1 parent 0e2d22b commit d9b70df
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 @@ -8,7 +8,7 @@
"expect": true
},
"rules": {
"no-use-before-define": 0,
"no-use-before-define": ["error", "nofunc"],
"no-unused-expressions": 0,
"import/no-extraneous-dependencies": ["error", {"devDependencies": ["!test/**/*.js"]}]
}
Expand Down

0 comments on commit d9b70df

Please sign in to comment.