Last active
May 1, 2017 19:55
-
-
Save cardoni/8002fef9cde50c6d6aca49e6f3bb2ce7 to your computer and use it in GitHub Desktop.
airbnb eslint overrides
This file contains hidden or 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
{ | |
"rules": { | |
"indent": [ | |
"error", | |
4 | |
], | |
"space-in-parens": [ | |
"error", | |
"always" | |
], | |
"comma-dangle": [ | |
"error", | |
"never" | |
], | |
"no-use-before-define": [ | |
"error", { | |
"functions": false, | |
"classes": false | |
} | |
] | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment