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 300045f commit 7a9f7a6Copy full SHA for 7a9f7a6
.github/workflows/pull-request.yaml
@@ -68,6 +68,15 @@ jobs:
68
with:
69
version: v1.51.2
70
71
+ # Give the job more time to execute.
72
+ # Regarding `--whole-files`, the linter is supposed to support linting of changed a patch only but,
73
+ # for some reason, it's very unreliable this way - sometimes it does not report any or some
74
+ # issues without linting the whole files, so we have to use `--whole-files`
75
+ # which can lead to some frustration from developers who would like to
76
+ # fix a single line in an existing codebase and the linter would force them
77
+ # into fixing all linting issues in the whole file instead.
78
+ args: --timeout=30m --whole-files
79
+
80
license:
81
runs-on: ubuntu-latest
82
steps:
0 commit comments