Skip to content

Instantly share code, notes, and snippets.

@josephkandi
Created July 31, 2018 07:45
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save josephkandi/0aad7d0c788255551cbe0f31ee45474e to your computer and use it in GitHub Desktop.
Save josephkandi/0aad7d0c788255551cbe0f31ee45474e to your computer and use it in GitHub Desktop.
ESLint config with babel-parser
module.exports = {
"parser": "babel-eslint",
"extends": "airbnb",
"rules": {
"react/jsx-filename-extension": [1, { "extensions": [".js", ".jsx"] }],
},
"env": {
"browser": true
}
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment