Compare commits
1 commit
e6d07010af
...
0a9d16fb9a
Author | SHA1 | Date | |
---|---|---|---|
0a9d16fb9a |
1 changed files with 5 additions and 2 deletions
|
@ -1,6 +1,9 @@
|
||||||
{ writers, python3Packages }:
|
{ writers, python3Packages }:
|
||||||
writers.writePython3 "audiomenu" {
|
writers.writePython3 "audiomenu" {
|
||||||
libraries = [ python3Packages.click ];
|
libraries = [ python3Packages.click ];
|
||||||
# line too long, but I like my code well documented
|
|
||||||
flakeIgnore = [ "E501" ];
|
flakeIgnore = [
|
||||||
|
"E501" # line too long, but I like my code well documented
|
||||||
|
"W503" # line break before binary operator, ruff does this, I trust it
|
||||||
|
];
|
||||||
} ./audiomenu.py
|
} ./audiomenu.py
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue