This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
MergeConflicts: | |
enabled: false | |
description: 'Check for merge conflicts' | |
quiet: true | |
required_executable: 'grep' | |
flags: ['-IHn', "^<<<<<<<[ \t]"] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
ForbiddenBranches: | |
enabled: false | |
description: 'Check for commit to forbidden branch' | |
quiet: true | |
branch_patterns: ['master'] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
FileSize: | |
enabled: false | |
description: 'Check for oversized files' | |
size_limit_bytes: 1_000_000 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
FixMe: | |
enabled: false | |
description: 'Check for "token" strings' | |
required_executable: 'grep' | |
flags: ['-IEHnw'] | |
keywords: ['BROKEN', 'BUG', 'ERROR', 'FIXME', 'HACK', 'NOTE', 'OPTIMIZE', 'REVIEW', 'TODO', 'WTF', 'XXX'] | |
exclude: | |
- '.overcommit.yml' |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
CaseConflicts: | |
enabled: false | |
description: 'Check for case-insensitivity conflicts' |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
BundleOutdated: | |
enabled: false | |
description: 'List installed gems with newer versions available' | |
required_executable: 'bundle' | |
flags: ['outdated', '--strict', '--parseable'] | |
install_command: 'gem install bundler' |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
BundleAudit: | |
enabled: false | |
description: 'Check for vulnerable versions of gems' | |
required_executable: 'bundle-audit' | |
install_command: 'gem install bundler-audit' |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
BrokenSymlinks: | |
enabled: false | |
description: 'Check for broken symlinks' | |
quiet: true |