Web Application

note

📣  All commands have to be run in the webapp service (make webapp).

ESLint#

ESLint is both a linting and a formatting tool.

It also comes with Prettier that provides more rules.

It will parse your JavaScript and CSS source code, catch common mistakes plus format it.

This command will try to fix and format your source code:

console
yarn lint:fix

This command will verify your source code:

console
yarn lint
note

📣  In your development environment, hot reloading automatically runs the lint command.