This is an opinionated react app development configurations on top of create-react-app generated project.
If you are using github as your hosting site, just click Use this template
button and let the magic happens.
or
you can use this repo by just clone it and make sure not to forget changing git origin url so that you won't push you codes by mistake to this repo.
git clone https://github.com/BenMaruchu/react-app-configs.git $APP_NAME
-
Replace
$APP_NAME
with your application name -
Delete
.git
inside your application directory
cd $APP_NAME & rm -rf .git
Make sure to install all dependencies depending on your favourite package manager.
- If you are using npm remember to delete yarn.lock and then run
npm install
to install all dependencies
- If you are using
yarn
just run
yarn install
This repo use commitizen which helps to ensure consistency on how contributors writes commit messages.
To ensure commit message rules are followed there is a commint linter which is run to validate commit message before commiting your codes into the repo.
Based on configs you can commit using npm scripts
by execute yarn commit
or npm run commit
to commit staged changes or normal git commit
command, but either way your commit messages will be linted.
If you want to stage and commit all changed files you can do that by yarn commit:all
or npm run commit:all
.
This project extends create-react-app eslint rules and add more rules which can be viewed on .eslintrc file.
On documenting code functions and code using JSDocs, there are rules configured on what properties to be included while documenting a piece of code using JSDoc. Read more eslint-plugin-jsdoc
For code formating prettier have been configured in this repo.
Changelog for releases can generated by running yarn changelog
or npm run changelog
which will update CHANGELOG.md
file by extracting changes from commit messages.
MIT License
Copyright (c) 2019 - present BenMaruchu & Contributors
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.