Created
January 22, 2018 09:58
-
-
Save jmporchet/db000d1aab9ff75957ca096b16c912ce to your computer and use it in GitHub Desktop.
react meteor .eslint
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": { | |
"no-underscore-dangle": 0, | |
"react/forbid-prop-types": 0, | |
"react/jsx-filename-extension": [1, { "extensions": [".js", ".jsx"] }], | |
"react/require-default-props": 0, | |
} | |
}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
"devDependencies": {
"babel-eslint": "^8.2.1",
"eslint": "^4.15.0",
"eslint-config-airbnb": "^16.1.0",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-react": "^7.5.1",
"prettier-eslint": "^8.7.3"
}