We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 684029d commit b2adfdbCopy full SHA for b2adfdb
.pre-commit-config.yaml
@@ -0,0 +1,15 @@
1
+repos:
2
+ - repo: https://github.com/pre-commit/pre-commit-hooks
3
+ rev: v5.0.0 # Use the latest stable version
4
+ hooks:
5
+ - id: check-added-large-files # Prevent giant files from being committed.
6
+ args: ["--maxkb=1000"]
7
+ - id: check-merge-conflict # Check for files that contain merge conflict strings.
8
+ - id: check-toml # Attempts to load all TOML files to verify syntax.
9
+ - id: check-yaml # Attempts to load all yaml files to verify syntax.
10
+ args: ["--unsafe"]
11
+
12
+ - repo: https://github.com/kynan/nbstripout
13
+ rev: 0.8.1
14
15
+ - id: nbstripout # remove jupyter notebook cell output
0 commit comments