Skip to content

Commit a701247

Browse files
committed
.zshrc: initial commit
1 parent f184459 commit a701247

File tree

2 files changed

+435
-0
lines changed

2 files changed

+435
-0
lines changed

.pre-commit-config.yaml

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,15 @@ repos:
44
hooks:
55
- id: stylua-github
66
args: ["--syntax", "Lua54"]
7+
- repo: https://github.com/koalaman/shellcheck-precommit
8+
rev: v0.11.0
9+
hooks:
10+
- id: shellcheck
11+
# SC1090: Can't follow non-constant source. Use a directive to specify location.
12+
# SC1091: Not following: file not found.
13+
# SC1071: ShellCheck only supports sh/bash/dash/ksh scripts. Sorry!
14+
args: ["--exclude=SC1090,SC1091,SC1071"]
15+
files: '.zshrc'
716
- repo: https://github.com/pre-commit/pre-commit-hooks
817
rev: v2.3.0
918
hooks:

0 commit comments

Comments
 (0)