mirror of
https://github.com/pre-commit/pre-commit.git
synced 2026-02-17 08:14:42 +04:00
16 lines
343 B
YAML
16 lines
343 B
YAML
- id: regex-with-quotes
|
|
name: Regex with quotes
|
|
entry: "foo'bar"
|
|
language: pcre
|
|
files: ''
|
|
- id: other-regex
|
|
name: Other regex
|
|
entry: ^\[INFO\]
|
|
language: pcre
|
|
files: ''
|
|
- id: regex-with-grep-args
|
|
name: Regex with grep extra arguments
|
|
entry: foo\sbar
|
|
language: pcre
|
|
files: ''
|
|
args: [-z]
|