Skip to content

Commit

Permalink
Add ESLint rule to prohibit 'use strict' since it is no longer needed
Browse files Browse the repository at this point in the history
  • Loading branch information
tlrobinson committed Oct 5, 2015
1 parent 2a0eb03 commit fe860af
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .eslintrc
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,8 @@
"semi": 0,
"no-console": 0,
"global-strict": 0,
"new-cap": 0
"new-cap": 0,
"strict": [2, "never"]
},
"plugins": [
"react"
Expand Down

0 comments on commit fe860af

Please sign in to comment.