Home

Awesome

codechecks-git-no-uncommitted

CircleCI

Detect uncommitted files. This codecheck reports any uncommitted changes. You might want to use it do detect if any file you track changes unexpectedly. For example, tt makes it possible to:

Usage

Add to your codechecks.yml file:

checks:
  - name: codechecks-git-no-uncommitted

Example

$ npx codechecks

Executing codechecks.yml...

# ❌ Git No Uncommitted

Result: 2 file changed


## Long description:

┌────────┬─────────────────────────────────────────┐
│ Change │ Path                                    │
├────────┼─────────────────────────────────────────┤
│ M      │ package-lock.json                       │
├────────┼─────────────────────────────────────────┤
│ M      │ src/networking/generated/schema.ts      │
└────────┴─────────────────────────────────────────┘

Contributors