File tree Expand file tree Collapse file tree 3 files changed +31
-8
lines changed Expand file tree Collapse file tree 3 files changed +31
-8
lines changed Original file line number Diff line number Diff line change @@ -7,7 +7,7 @@ daysUntilStale: 180
7
7
8
8
# Number of days of inactivity before an Issue or Pull Request with the stale label is closed.
9
9
# Set to false to disable. If disabled, issues still need to be closed manually, but will remain marked as stale.
10
- daysUntilClose : 180
10
+ daysUntilClose : false
11
11
12
12
# Only issues or pull requests with all of these labels are check if stale. Defaults to `[]` (disabled)
13
13
onlyLabels : []
@@ -31,10 +31,10 @@ exemptAssignees: false
31
31
staleLabel : stale
32
32
33
33
# Comment to post when marking as stale. Set to `false` to disable
34
- markComment : >
35
- This issue has been automatically marked as stale because it has not had
36
- recent activity. It will be closed if no further activity occurs. Thank you
37
- for your contributions.
34
+ markComment : false
35
+ # This issue has been automatically marked as stale because it has not had
36
+ # recent activity. It will be closed if no further activity occurs. Thank you
37
+ # for your contributions.
38
38
39
39
# Comment to post when removing the stale label.
40
40
# unmarkComment: >
Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ exclude: ^$
5
5
6
6
repos :
7
7
- repo : https://github.com/repo-helper/pyproject-parser
8
- rev : v0.4.2
8
+ rev : v0.4.3
9
9
hooks :
10
10
- id : reformat-pyproject
11
11
67
67
- --keep-runtime-typing
68
68
69
69
- repo : https://github.com/Lucas-C/pre-commit-hooks
70
- rev : v1.1.11
70
+ rev : v1.1.13
71
71
hooks :
72
72
- id : remove-crlf
73
73
- id : forbid-crlf
78
78
- id : snippet-fmt
79
79
80
80
- repo : https://github.com/python-formate/formate
81
- rev : v0.4.9
81
+ rev : v0.4.10
82
82
hooks :
83
83
- id : formate
84
84
exclude : ^(doc-source/conf|__pkginfo__|setup)\.(_)?py$
Original file line number Diff line number Diff line change
1
+ default : lint
2
+
3
+ pdf-docs : latex-docs
4
+ make -C doc-source/ build/ latex/
5
+
6
+ latex-docs :
7
+ SPHINX_BUILDER=latex tox -e docs
8
+
9
+ unused-imports :
10
+ tox -e lint -- --select F401
11
+
12
+ incomplete-defs :
13
+ #!/usr/bin/env bash
14
+ tox -e mypy -- --disallow-incomplete-defs --disallow-untyped-defs | grep " Function is missing a .* annotation" || exit 0
15
+
16
+ vdiff :
17
+ git diff $(repo-helper show version -q)..HEAD
18
+
19
+ bare-ignore :
20
+ greppy ' # type:? *ignore(?!\[|\w)' -s
21
+
22
+ lint : unused-imports incomplete-defs bare-ignore
23
+ tox -n qa
You can’t perform that action at this time.
0 commit comments