Last active
June 15, 2017 02:48
-
-
Save dimasjt/b7578bf99e1463c3f8e96dfbcdc620ca to your computer and use it in GitHub Desktop.
My Config
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
Show hidden characters
{ | |
"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"] | |
} | |
} |
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
{ | |
"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