Skip to content

Commit 67d1d6f

Browse files
authored
Merge pull request #1302 from pjkaufman/master
Update Mermaid Diagram on How the Linter Works
2 parents fdf4555 + aab7a84 commit 67d1d6f

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

docs/docs/index.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -19,20 +19,20 @@ The Linter follows the following basic steps when it is run on a file:
1919

2020
``` mermaid
2121
graph TD
22-
start[1. User initiates linting of file or files] --> run-linter-rules
23-
run-linter-rules[2. If file is not ignored, run Linter rules and Custom Commands*] --> handle-error
22+
start["1. User initiates linting of file or files"] --> run-linter-rules
23+
run-linter-rules["2. If file is not ignored, run Linter rules and Custom Commands*"] --> handle-error
2424
handle-error{Did an error happen?} -- No --> update-file
2525
handle-error -- Yes --> log-error
26-
log-error[3. Display error and log to dev console] --> done
27-
update-file[3. Update file contents**] --> done
26+
log-error["3. Display error and log to dev console"] --> done
27+
update-file["3. Update file contents**"] --> done
2828
done[Done]
2929
```
3030

3131
!!! Note
3232
*Currently custom commands only run when a single file is linted.
3333

3434
**This is a bit of a simplification as the file is updated after running Linter rules, but before Custom Commands run
35-
if no error has ocurred.
35+
if no error has occurred.
3636

3737
### 1. User Initiates Linting of File or Files
3838

0 commit comments

Comments
 (0)