Last active
August 9, 2017 09:41
-
-
Save sharkyak/ce9a2cab17caabccdc4031eccf9449ed to your computer and use it in GitHub Desktop.
eslint config file
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
module.exports = { | |
"extends": "airbnb-base", | |
"rules": { | |
"linebreak-style": ["error", "windows"], | |
"semi": ["error", "never"], | |
"comma-dangle": ["error", "never"], | |
"arrow-parens": ["error", "as-needed"], | |
"no-use-before-define": 0, | |
"no-mixed-operators": 0, | |
"max-len": 0, | |
"no-plusplus": 0, | |
"no-console": 0 | |
} | |
}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment