Skip to content

Instantly share code, notes, and snippets.

@jmporchet
Created January 22, 2018 09:58
Show Gist options
  • Save jmporchet/db000d1aab9ff75957ca096b16c912ce to your computer and use it in GitHub Desktop.
Save jmporchet/db000d1aab9ff75957ca096b16c912ce to your computer and use it in GitHub Desktop.
react meteor .eslint
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,
}
};
@jmporchet
Copy link
Author

"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"
}

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment