Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion run_lint.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,5 @@
# filepath: /home/gus/p/ecosystem/logspec/run_flake8.sh

echo "Running flake8..."
flake8 .
flake8 .
pylint logspec
9 changes: 8 additions & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ install_requires =
pytest
pyyaml
flake8
pylint

[options.packages.find]
include = logspec*
Expand All @@ -41,4 +42,10 @@ ignore = E203, E266, E501, W503
# - E131: Continuation line unaligned for hanging indent.
# - E122: Continuation line missing indentation or outdented.
per-file-ignores =
tests/*: E121, E126, E131, E122
tests/*: E121, E126, E131, E122

[pylint]
max-line-length = 88
# Disable missing module, class, function docstrings and style checks
disable = C0114, C0115, C0116, C0301, C0302, C0326
ignore-patterns = .git, .venv, __pycache__, build, dist
Loading