Skip to content

Instantly share code, notes, and snippets.

@kldeb
Last active June 8, 2018 18:45
Show Gist options
  • Save kldeb/004a23d5393bbababa454a51dc663e3a to your computer and use it in GitHub Desktop.
Save kldeb/004a23d5393bbababa454a51dc663e3a to your computer and use it in GitHub Desktop.
Post create-react-app project setup

add react bootstrap

yarn add react-bootstrap bootstrap@3

add code formatting yarn add husky lint-staged prettier

create .prettierrc file

{
  "printWidth": 80,
  "parser": "flow",
  "trailingComma": "es5",
  "singleQuote": true
}

add precommit to package.json scripts "precommit": "lint-staged",

add lint-staged to package.json

  "src/**/*.{js,jsx,json,css}": [
    "prettier --single-quote --write",
    "git add"
  ]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment