We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ab76a06 commit 5a412a2Copy full SHA for 5a412a2
.github/workflows/testing.yml
@@ -15,6 +15,7 @@ jobs:
15
with:
16
path: example
17
only_warn: 1
18
+ max_line_length: 90
19
20
codespell:
21
name: Check for spelling errors
example/example.py
@@ -3,3 +3,11 @@ def test():
3
pass
4
def test() :
5
6
+
7
8
+def line_that_will_be_way_too_long_but_not_long_enough_to_trigger_with_the_set_length():
9
+ pass
10
11
12
+def but_this_time_it_really_is_too_long_so_this_triggers_a_warning_in_every_pullrequest_which_is_fine():
13
0 commit comments