Skip to content

Instantly share code, notes, and snippets.

@dimasjt
Last active June 15, 2017 02:48
Show Gist options
  • Save dimasjt/b7578bf99e1463c3f8e96dfbcdc620ca to your computer and use it in GitHub Desktop.
Save dimasjt/b7578bf99e1463c3f8e96dfbcdc620ca to your computer and use it in GitHub Desktop.
My Config
{
"extends": "airbnb",
"plugins": [
"react",
"jsx-a11y",
"import"
],
"parserOptions": {
"ecmaFeatures": {
"jsx": true
}
},
"env": {
"browser": true,
"node": true
},
"rules": {
"arrow-body-style": 0,
"quotes": ["error", "double"],
"jsx-quotes": ["error", "prefer-double"],
"react/jsx-filename-extension": [1, { "extensions": [".js", ".jsx"] }],
"prefer-arrow-callback": ["error"]
}
}
{
"dependencies": {
"babel-eslint": "^7.2.3",
"eslint": "3",
"eslint-config-airbnb": "^15.0.1",
"eslint-plugin-import": "^2.3.0",
"eslint-plugin-jsx-a11y": "^5.0.3",
"eslint-plugin-react": "^7.1.0",
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment