Created
March 27, 2017 13:30
-
-
Save antonydb/1a32129f8509306aeb182449246c51e3 to your computer and use it in GitHub Desktop.
Really basic eslintrc for react projecs
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", | |
"plugins": [ | |
"react", | |
"jsx-a11y", | |
"import" | |
], | |
"rules": { | |
"react/jsx-filename-extension": ["error", { "extensions": [".js", ".jsx"] }], | |
"comma-dangle": ["error", { | |
"arrays": "never", | |
"objects": "never", | |
"imports": "never", | |
"exports": "never", | |
"functions": "ignore", | |
}] | |
}, | |
"env": { | |
"browser": true | |
} | |
}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment