- React (with hot reloading)
- Styled Components (with stylelint)
- Webpack 4
- TypeScript & ESlint & Prettier (via @ardoq/shared-configs)
git clone git@github.com:ardoq/front-end-starter.git
cd front-endstarter && rm -rf .git
yarn install
- Transform it into your needs!
yarn start
(development with hot-reloading)yarn lint
(eslint)yarn stylelint
(eslint)yarn check-types
(TypeScript check)yarn build
(Build to/dist
, uses webpack.prod.js
- VSCode Stylelint
- ESlint
with config option
"eslint.codeActionsOnSave.mode": "all"
(to fix eslint issues and auto-format on save)