#Another boilerplate skeleton
##Commands
npm run dev
to launch the development server.
npm run build
to build the project.
npm run lint
to see all lints messages.
npm run lint-fix
to fix all lints messages.
##ESLint
ESLint config added with the command ./node_modules/.bin/eslint --init
.
Don't forget to re-run this command to personalize your linting !
##Sass
Each component is paired with a SCSS module to improve their independence !
Also, you can find some global sass into /sass
folder. There is a reset.scss
, variables.scss
, fonts definitions, some variables, reusable classes (extensions.scss
), and the index.scss
.
##Redux
You will find a simple redux structure into /redux
folder.
##Misc
- You can make some hooks and add them into
/hooks
folder. - You can put handeful functions, constants, and misc code into
/utils
folder. <meta
tags added for social networks and things intopublic/index.html
. You have to complete this HTML.