You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+13-1Lines changed: 13 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -18,7 +18,19 @@ Don't forget to make it executable.
18
18
Usage
19
19
------
20
20
21
-
The commit hook will automatically be called when you are running `git commit`. If you want to skip the tests for a certain commit, use the `-n` flag, `git commit -n`.
21
+
The commit hook will automatically be called when you are running `git commit`. If you want to skip the tests for a certain commit, use the `-n` flag, `git commit -n`.
22
+
23
+
### Setting score limit
24
+
25
+
Open the `pre-commit` script and update the `LIMIT` value according to your needs. E.g.
26
+
27
+
LIMIT = 8.0
28
+
29
+
### Custom `pylint` command line options
30
+
31
+
The hook supports custom command line options to be specified. Those can be added to the `PYLINT_PARAMS` inside the `pre-commit` script. E.g.
0 commit comments