We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
If your .gitignore has one or more empty lines, inspektor will ignore all files and return FAIL:
.gitignore
avocado) [bleal@laptop avocado]$ inspekt lint --exclude ".git" Pylint disabled: W,R,C,E1002,E1101,E1103,E1120,F0401,I0011 Pylint enabled : W0611 Syntax check FAIL (avocado) [user@laptop avocado]$ echo $? 1
If I remove the empty lines on .gitignore the result it is as expected:
(avocado) [user@laptop avocado]$ inspekt lint --exclude ".git" Running 'pylint --help' Pylint disabled: W,R,C,E1002,E1101,E1103,E1120,F0401,I0011 Pylint enabled : W0611 (avocado) [user@laptop avocado]$ echo $? 0
The text was updated successfully, but these errors were encountered:
No branches or pull requests
If your
.gitignore
has one or more empty lines, inspektor will ignore all files and return FAIL:If I remove the empty lines on .gitignore the result it is as expected:
The text was updated successfully, but these errors were encountered: