Install local dependencies:
brew install nvm tidy-html5
npm install --global @awmottaz/prettier-plugin-void-html prettier-plugin-organize-attributes
Setup nvm
for automatic use of .nvmrc
files to ensure that the correct version
of node is used while developing. This version is specified by the currently supported
version for Firebase Functions.
Follow the Angular Style Guide example for how to structure the files in the application.
Use ng lint
to inspect the entire code base.
Use eslint --fix [FILE_PATH]
to apply automatic fixes to specific files or paths.
Use npm run stylelint
to inspect the SCSS files in the entire code base.
Use stylelint [FILE_PATH] --fix
to apply automatic fixes to specific files or
paths.
The test suite uses the Firebase Emulator for tests. So you cannot use ng test
directly. Instead use npm run test
which will run ng test
as an executable
script for firebase emulator:exec
.
[!TIP] See Firebase Init and Java Install for a bit more information about setting up the emulators.
There is also npm run test:once
for single test runs including code coverage.
And there is npm run test:export
which will update the fixtures/
directory
in the project root with the final state of the Firebase Emulator on exit.
[!TIP] Updating
firestore.rules
orstorage.rules
will cause the emulator to update:i firestore: Change detected, updating rules... ✔ firestore: Rules updated.
But it will not cause the Angular test suite to re-run. So you will need to refresh the test browser window after editing rules.