Last active
December 25, 2015 16:28
-
-
Save tribou/8128bc30a526a9f22062 to your computer and use it in GitHub Desktop.
Example showing how to override rules in .eslintrc
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"extends": "airbnb", | |
"rules": { | |
"no-multiple-empty-lines": [2, {"max": 2, "maxEOF": 2}] | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment