mirror of
https://github.com/projectatomic/rpmdistro-gitoverlay.git
synced 2026-02-05 15:45:57 +01:00
It catches unused imports at least which is helpful. Ignore some of the more annoying errors. Closes: #15 Approved by: cgwalters
4 lines
86 B
Bash
Executable File
4 lines
86 B
Bash
Executable File
#!/bin/bash
|
|
set -euo pipefail
|
|
exec flake8 --ignore E501,E302,E231,W293,W291,E226 rdgo
|