diff options
| author | Taylor Mullen <[email protected]> | 2025-04-20 22:19:48 -0400 |
|---|---|---|
| committer | N. Taylor Mullen <[email protected]> | 2025-04-20 22:25:20 -0400 |
| commit | ce0f2dd8680609b194036a227aee7a35212c419d (patch) | |
| tree | 78167705f160c939da362560d7175a208a42e86a /README.md | |
| parent | d668600672f60980539693c993216c40c1f9e628 (diff) | |
Update README to reflect current state of the world.
- We now have CI/CD
- We have linting support (so added a section)
- Fixed `npm run debug` to allow debugging again.
Diffstat (limited to 'README.md')
| -rw-r--r-- | README.md | 12 |
1 files changed, 11 insertions, 1 deletions
@@ -1,6 +1,6 @@ # Gemini Code -**Disclaimer:** This README.md was created by gemini-code and this project was developed rapidly and currently lacks comprehensive testing, CI/CD pipelines, and other quality-of-life features common in mature projects. +**Disclaimer:** This README.md was created by gemini-code and this project was developed rapidly and currently lacks comprehensive testing, and other quality-of-life features common in mature projects. This repository contains the Gemini Code CLI tool. @@ -61,3 +61,13 @@ npm run format ``` This command uses Prettier to format the code according to the project's style guidelines. + +## Linting + +To lint the code in this project, run the following command fro the root directory: + +```bash +npm run lint +``` + +Chances are you will need to manually address errors output. You can also try `npm run lint -- --fix` where some errors may be resolved. |
