-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcodecocoon.example.yml
More file actions
20 lines (17 loc) · 922 Bytes
/
codecocoon.example.yml
File metadata and controls
20 lines (17 loc) · 922 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
# Absolute or project-local path to the root of the project you want to transform
projectRoot: "/path/to/project/root"
# Optional: limit transformations to these files (relative to the root). Leave empty to target the entire project
files: []
# Optional: directory where memory files are stored (for deterministic rename transformations)
# If not specified, defaults to '.codecocoon-memory' in the same directory as this config file
# Can be:
# - Absolute path: "/absolute/path/to/memory"
# - Relative path: "my-memory-dir" (relative to this config file's directory)
memoryDir: ".codecocoon-memory"
# The transformation pipeline. Order matters. Each transformation has:
# - id: unique identifier
# - config: arbitrary nested settings; only the selected transformation should interpret it
transformations:
- id: "add-comment-transformation"
config:
message: "Hello from `add-comment-transformation`!"