File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -19,20 +19,20 @@ The Linter follows the following basic steps when it is run on a file:
1919
2020``` mermaid
2121graph 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[User initiates linting of file or files] --> run-linter-rules
23+ run-linter-rules[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
2626 log-error[3. Display error and log to dev console] --> done
27- update-file[3. Update file contents**] --> done
27+ update-file[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
You can’t perform that action at this time.
0 commit comments