Configure the Zenable GitHub Reviewer to match your team’s standards
zenable_config.toml
or zenable_config.yaml
in any directory of your repository.
Glob Pattern Examples
*.log
- Skip all log files in any directory**/*.tmp
- Skip all .tmp files in any directory (recursive)src/**/*.test.js
- Skip all .test.js files under src/ directorydocs/*.md
- Skip markdown files directly in docs/ directorybuild/*
- Skip all files directly in build/ directory**/node_modules/**
- Skip all files in any node_modules directoryexample.py
- Skip files named example.py in any directory**/example.tmp
- Skip files named example.tmp in any directory (i.e. the same as example.tmp
)/example.py
- Skip example.py only in the root directoryzenable_config.toml
or zenable_config.yaml
. If you have multiple in different directories, the GitHub Reviewer will fail to load the configuration and will use the default configuration.