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
-`format` — Formats the codebase using Prettier. (line [89](./package.json#L89))
200
+
-`format` — Formats the codebase using Prettier. (line [90](./package.json#L90))
201
201
202
202
```bash
203
203
prettier --write .
204
204
```
205
205
206
-
-`lint` — Lints the codebase for potential errors and style violations. (line [87](./package.json#L87))
206
+
-`lint` — Lints the codebase for potential errors and style violations. (line [88](./package.json#L88))
207
207
208
208
```bash
209
209
eslint src/ **/*.js **/*.json
210
210
```
211
211
212
-
-`lint:fix` — Lints the codebase and automatically fixes fixable issues. (line [88](./package.json#L88))
212
+
-`lint:fix` — Lints the codebase and automatically fixes fixable issues. (line [89](./package.json#L89))
213
213
214
214
```bash
215
215
eslint --fix src/ **/*.js **/*.json
216
216
```
217
217
218
-
-`prep` — Prepares the codebase by generating documentation, linting, and formatting. (line [90](./package.json#L90))
218
+
-`prep` — Prepares the codebase by generating documentation, linting, and formatting. (line [91](./package.json#L91))
219
219
220
220
```bash
221
221
npm run docs && npm run lint:fix && npm run format
222
222
```
223
223
224
-
-`test` — Runs the test suite using Jest. (line [85](./package.json#L85))
224
+
-`test` — Runs the test suite using Jest. (line [86](./package.json#L86))
225
225
226
226
```bash
227
227
jest --passWithNoTests
@@ -245,6 +245,7 @@ This project is licensed under the MIT License - see the [LICENSE](LICENSE) file
245
245
-[@eslint/js](https://www.npmjs.com/package/%40eslint%2Fjs) — ESLint JavaScript language implementation
246
246
-[babel-jest](https://www.npmjs.com/package/babel-jest) — Jest plugin to use babel for transformation.
247
247
-[commander](https://www.npmjs.com/package/commander) — the complete solution for node.js command-line programs
248
+
-[conventional-changelog-cli](https://www.npmjs.com/package/conventional-changelog-cli) — No description available
248
249
-[dotenv](https://www.npmjs.com/package/dotenv) — Loads environment variables from .env file
249
250
-[eslint](https://www.npmjs.com/package/eslint) — An AST-based pattern checker for JavaScript.
250
251
-[eslint-config-prettier](https://www.npmjs.com/package/eslint-config-prettier) — Turns off all rules that are unnecessary or might conflict with Prettier.
0 commit comments