Skip to content

Instantly share code, notes, and snippets.

@Junglecrew
Created August 30, 2018 09:10
Show Gist options
  • Save Junglecrew/46f3514844af52ca9b450cf53045d9c7 to your computer and use it in GitHub Desktop.
Save Junglecrew/46f3514844af52ca9b450cf53045d9c7 to your computer and use it in GitHub Desktop.
Linter and Prettier settings
.eslintrc
{
"extends": [
"fbjs",
"prettier"
],
"plugins": [
"prettier"
],
"rules": {
"prettier/prettier": "error",
"react/no-unused-prop-types": 1,
"react/prop-types": 1
},
"parser": "babel-eslint"
}
.prettierrc
{
"printWidth": 120,
"singleQuote": true,
"semi": false,
"trailingComma": "es5"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment