Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/layer-se7en/cra-template-cleanscript
Cleaned cra-template-typescript with preconfigured pre-comit linting and formatting.
https://github.com/layer-se7en/cra-template-cleanscript
Last synced: 1 day ago
JSON representation
Cleaned cra-template-typescript with preconfigured pre-comit linting and formatting.
- Host: GitHub
- URL: https://github.com/layer-se7en/cra-template-cleanscript
- Owner: layer-se7en
- Created: 2022-04-19T23:49:49.000Z (over 2 years ago)
- Default Branch: master
- Last Pushed: 2022-04-20T00:42:00.000Z (over 2 years ago)
- Last Synced: 2024-12-31T03:29:32.186Z (10 days ago)
- Language: HTML
- Homepage: https://www.npmjs.com/package/cra-template-cleanscript
- Size: 180 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# cra-template-cleanscript
This template is a cleaned version of the official TypeScript template for [Create React App](https://github.com/facebook/create-react-app).
By clean I mean:
- without files and folders that everyone usually deletes
- with preconfigured eslint + stylelint + prettier + airbnb + husky + lint stage ( running `yarn husky` enables pre-commit checking )
- with preconfigured github workflow that runs both on macos and ubuntuTo use this template, add `--template cleanscript` when creating a new app.
For example:
```sh
npx create-react-app my-app --template cleanscript# or
yarn create react-app my-app --template cleanscript
```