-
Notifications
You must be signed in to change notification settings - Fork 306
[feat] PEP8 Support #110
base: master
Are you sure you want to change the base?
[feat] PEP8 Support #110
Conversation
.circleci/config.yml
Outdated
name: Code Style Check | ||
command: | | ||
. venv/bin/activate | ||
flake8 vibora |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This misses the Python syntax error in #32 that flake8 is capable of finding.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
all right,I will recovery it
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@cclauss
I check this issue. The author has fixed this problem.
Why flake8 vibora and not flake8 . to test the entire repo? Don’t we want to also automate the process of finding issues in our ./samples and ./tests? |
@cclauss OK I will fix it |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Nice work!!
add flake8 checking in CI
add flake8 config file to ignore some unnecessary option such as:E501 line too long ,F401 '.router.*' imported but unused
fix some code style problem