Documentation for .josh file #1521
-
I have been looking around quite a bit but I can't seem to figure out the syntax. E.g: Why the colon after the "="? I can't find any documentation for this and I am getting very frustrated :/ Pls help |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 1 reply
-
Hi, The filters listed in workspace.josh are composed together, as if you wrote This is technically documented in https://josh-project.github.io/josh/reference/filters.html#composition-filter1filter2filtern but I will admit it is not quite clear. |
Beta Was this translation helpful? Give feedback.
-
Regarding the difference between :: and :/, this is in this case properly documented here: https://josh-project.github.io/josh/reference/filters.html#pattern-filters .
|
Beta Was this translation helpful? Give feedback.
Hi,
The filters listed in workspace.josh are composed together, as if you wrote
:[:filter1,:filter2]
.Inside this composition,
mod/a = :/shared/a
is a shorthand for:/shared/a:prefix=mod/a
.This is technically documented in https://josh-project.github.io/josh/reference/filters.html#composition-filter1filter2filtern but I will admit it is not quite clear.