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
Copy file name to clipboardExpand all lines: vignettes/hook-order.Rmd
+13-11Lines changed: 13 additions & 11 deletions
Original file line number
Diff line number
Diff line change
@@ -21,21 +21,23 @@ Read only hooks should generally run only after write hooks.
21
21
- Only add a dependency once, i.e. if styler must run before roxygen, add the requirement to styler or roxygen, not both. This makes keeping track easier.
22
22
- The hooks must appear in an order that meets all constraints, not just randomly order constraints.
23
23
24
-
## Hooks with dependencies:
24
+
## Hooks with dependencies
25
25
26
-
**Read and write**
26
+
### Read and write
27
27
28
-
- styler: should run before roxygen because of caching. Caches.
29
-
- roxygen. Caches.
30
-
- codemeta: must be before tidy description.
31
-
- use-tidy-description.
28
+
- style-files - caches; should run before roxygenize because of the caching
29
+
- roxygenize - caches
30
+
- codemeta-description-updated - must be before use-tidy-description
31
+
- use-tidy-description
32
+
- spell-check - updates `inst/WORDLIST`; should run after roxygenize
0 commit comments