tanshu
ba4f8a4831
Update password works Updated the precision and nullability for models Batch was sending non round quantity_available Amounts were not being displayed in daybook Moved dockerfile from root to have a consistent build environment
22 lines
330 B
Markdown
22 lines
330 B
Markdown
## Prettier - to format typescript files
|
|
```npx prettier --write src/app/```
|
|
|
|
## Eslint - to lint typescript files
|
|
```shell script
|
|
eslint src/app/
|
|
```
|
|
Optional to fix the errors as well
|
|
```
|
|
eslint src/app/ --fix
|
|
```
|
|
|
|
### Poerty remove environment
|
|
```sh
|
|
rm -rf `poetry env info -p`
|
|
```
|
|
|
|
### Poerty install
|
|
```sh
|
|
poetry install
|
|
```
|