Skip to content

Commit 051523b

Browse files
🩹 [Patch]: Add linter environment variables to PSModule.yml (#49)
## Description This pull request adds configuration to the `.github/PSModule.yml` file to disable several linter validations in the testing workflow. This helps control which linting checks are run during automated tests. Testing configuration updates: * Disabled various linter validations (`VALIDATE_BIOME_FORMAT`, `VALIDATE_BIOME_LINT`, `VALIDATE_GITHUB_ACTIONS_ZIZMOR`, `VALIDATE_JSCPD`, `VALIDATE_JSON_PRETTIER`, `VALIDATE_MARKDOWN_PRETTIER`, `VALIDATE_YAML_PRETTIER`) by setting their environment variables to `false` under the `Linter` section in `.github/PSModule.yml`.
1 parent b69da71 commit 051523b

1 file changed

Lines changed: 9 additions & 0 deletions

File tree

.github/PSModule.yml

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,3 +19,12 @@ Test:
1919
# Build:
2020
# Docs:
2121
# Skip: true
22+
Linter:
23+
env:
24+
VALIDATE_BIOME_FORMAT: false
25+
VALIDATE_BIOME_LINT: false
26+
VALIDATE_GITHUB_ACTIONS_ZIZMOR: false
27+
VALIDATE_JSCPD: false
28+
VALIDATE_JSON_PRETTIER: false
29+
VALIDATE_MARKDOWN_PRETTIER: false
30+
VALIDATE_YAML_PRETTIER: false

0 commit comments

Comments
 (0)