We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2779a12 commit a55f9c0Copy full SHA for a55f9c0
.pre-commit-config.yaml
@@ -110,7 +110,10 @@ repos:
110
pass_filenames: false
111
- id: check-filenames
112
name: Check for spaces in all filenames
113
- entry: bash -c 'git ls-files | grep " " && echo "Filenames should not contain spaces!" && exit 1 || exit 0'
+ entry: bash
114
+ args:
115
+ - -c
116
+ - 'git ls-files | grep " " && echo "Filenames should not contain spaces!" && exit 1 || exit 0'
117
language: system
118
always_run: true
119
0 commit comments