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
{{ message }}
This repository was archived by the owner on Jul 21, 2025. It is now read-only.
The program can be configured using a yaml and the --config flag. This is optional and the program will use the default configuration if no configuration is provided.
68
+
69
+
```yaml
70
+
Checks:
71
+
- Name: "License Exists"# Name of the check. (See https://github.com/EmilZackrisson/RepositoryLinter/blob/main/RepositoryLinter/LintRunner.cs)
72
+
AllowedToFail: false # Default
73
+
74
+
# Path to save the git repositories to. Default is a temp directory.
75
+
PathToSaveGitRepos: "~/RepositoryLinter"
76
+
77
+
# Truncate the output of each check to 10 lines. Default is true.
78
+
TruncateOutput: true # Default
79
+
80
+
# Clean up the cloned repositories after the program has finished. Default is true.
81
+
CleanUp: true # Default
82
+
```
83
+
84
+
85
+
66
86
## Run tests
67
87
68
88
The unit tests are using the [xUnit](https://xunit.net/) framework.
0 commit comments