Skip to content

Commit

Permalink
update pylint
Browse files Browse the repository at this point in the history
  • Loading branch information
pindge committed Nov 6, 2022
1 parent 0cbc00c commit 4ac72a5
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ jobs:
run: |
pip install .[test,dev]
pip install pylint
pylint -j 2 --reports no datacube_ows --disable=C,R,E1136
pylint -j 2 --reports no datacube_ows --disable=C,R,W,E1136
flake8:
name: flake8
Expand Down
2 changes: 1 addition & 1 deletion .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ repos:
rev: v2.15.5
hooks:
- id: pylint
args: ["--disable=C,R,E1136"]
args: ["--disable=C,R,W,E1136"]
- repo: https://github.com/pre-commit/mirrors-autopep8
rev: 'v2.0.0' # Use the sha / tag you want to point at
hooks:
Expand Down
4 changes: 0 additions & 4 deletions pylintrc
Original file line number Diff line number Diff line change
Expand Up @@ -35,10 +35,6 @@ disable=no-self-use,


[BASIC]

# List of builtins function names that should not be used, separated by a comma
bad-functions=apply,input

# Regular expression which should only match correct module names
module-rgx=(([a-z_][a-z0-9_]*)|([A-Z][a-zA-Z0-9]+))$

Expand Down

0 comments on commit 4ac72a5

Please sign in to comment.