Skip to content

Commit

Permalink
Merge pull request #1310 from rjeffman/remove_pydocstyle
Browse files Browse the repository at this point in the history
linters: Remove pydocstyle from linter checks
  • Loading branch information
t-woerner authored Nov 7, 2024
2 parents 08a2ba1 + 24569b8 commit 97b0638
Show file tree
Hide file tree
Showing 5 changed files with 0 additions and 26 deletions.
15 changes: 0 additions & 15 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,21 +34,6 @@ jobs:
- name: Run yaml-lint
uses: ibiqlik/[email protected]

pydocstyle:
name: Verify pydocstyle
runs-on: ubuntu-latest
steps:
- uses: actions/[email protected]
with:
fetch-depth: 1
- uses: actions/[email protected]
with:
python-version: "3.x"
- name: Run pydocstyle
run: |
pip install pydocstyle
pydocstyle
flake8:
name: Verify flake8
runs-on: ubuntu-latest
Expand Down
4 changes: 0 additions & 4 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -29,10 +29,6 @@ repos:
rev: 7.0.0
hooks:
- id: flake8
- repo: https://github.com/pycqa/pydocstyle
rev: 6.3.0
hooks:
- id: pydocstyle
- repo: https://github.com/pycqa/pylint
rev: v3.2.2
hooks:
Expand Down
1 change: 0 additions & 1 deletion requirements-dev.txt
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,5 @@ flake8==7.0.0
flake8-bugbear
pylint>=3.2
wrapt==1.14.1
pydocstyle==6.3.0
yamllint==1.35.1
ansible-lint>=24.5.0
4 changes: 0 additions & 4 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -28,10 +28,6 @@ per-file-ignores =
plugins/*:E402
roles/*:E402

[pydocstyle]
inherit = false
ignore = D1,D212,D203

[pylint.MASTER]
disable =
consider-using-f-string, # f-string is not supported on Python2
Expand Down
2 changes: 0 additions & 2 deletions utils/lint_check.sh
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,6 @@ pushd "${topdir}/.." >/dev/null 2>&1 || exit 1

echo -e "${INFO}Running 'flake8'...${RST}"
flake8 plugins utils roles setup.py
echo -e "${INFO}Running 'pydocstyle'...${RST}"
pydocstyle plugins utils roles setup.py
echo -e "${INFO}Running 'pylint'...${RST}"
pylint plugins roles setup.py

Expand Down

0 comments on commit 97b0638

Please sign in to comment.