forked from reframe-hpc/reframe
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.pep8speaks.yml
More file actions
26 lines (23 loc) · 736 Bytes
/
.pep8speaks.yml
File metadata and controls
26 lines (23 loc) · 736 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
message:
opened:
header: "Hello @{name}, Thank you for submitting the Pull Request!"
footer: "Do see the ReFrame [Coding Style Guide](https://github.com/reframe-hpc/reframe/wiki/coding-style-guide)"
updated:
header: "Hello @{name}, Thank you for updating!"
footer: "Do see the ReFrame [Coding Style Guide](https://github.com/reframe-hpc/reframe/wiki/coding-style-guide)"
no_errors: "Cheers! There are no PEP8 issues in this Pull Request!"
only_mention_files_with_errors: True
scanner:
diff_only: True
pycodestyle:
max-line-length: 79
ignore:
- E129
- E221
- E226
- E241
- E272
- E741
- E742
- E743
- W504