You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
-[List of environment variables](#list-of-environment-variables)
19
21
-[Deployment](#deployment)
20
22
-[Releases](#releases)
@@ -48,8 +50,10 @@ To build the app you can use some of the following commands:
48
50
49
51
```
50
52
npm run build
51
-
npm run build:dev
52
-
npm run build:prod # builds the app for production
53
+
54
+
# TODO: development and production builds if applicable
55
+
# npm run build:dev
56
+
# npm run build:prod
53
57
54
58
```
55
59
@@ -61,8 +65,8 @@ To start the unit tests you can use one of the following commands:
61
65
62
66
```
63
67
npm run test
64
-
npm run test:watch # runs all tests in watch mode and without code coverage report
65
-
npm run test:watch:coverage # runs all tests in watch mode with code coverage report
68
+
npm run test:watch
69
+
npm run test:coverage
66
70
67
71
```
68
72
@@ -76,10 +80,9 @@ The following tools are used in the project to ensure code quality:
76
80
77
81
Prettier: for consistent code formatting.
78
82
ESLint: for identifying and fixing code quality issues.
79
-
Stylelint: for identifying and fixing CSS code quality issues.
80
83
Husky: Git hooks to automate code quality checks with ESLint and Prettier
81
84
82
-
Local code quality checks (Prettier, ESLint, and Stylelint) are run before a user can commit their code through Husky's _pre-commit_ hook, which ensures that the code pushed to Git is consistent and doesn't include any obvious issues that can be detected with static analysis.
85
+
Local code quality checks (Prettier, ESLint) are run before a user can commit their code through Husky's _pre-commit_ hook, which ensures that the code pushed to Git is consistent and doesn't include any obvious issues that can be detected with static analysis.
83
86
84
87
## Environments
85
88
@@ -92,7 +95,13 @@ There are currently two application environments:
0 commit comments