forked from VimPlug/jedi
Enable linting of our test code, but not our test data files
This commit is contained in:
2
.github/workflows/ci.yml
vendored
2
.github/workflows/ci.yml
vendored
@@ -47,7 +47,7 @@ jobs:
|
|||||||
|
|
||||||
- name: Run tests
|
- name: Run tests
|
||||||
run: |
|
run: |
|
||||||
python -m flake8 jedi setup.py
|
python -m flake8 jedi test setup.py
|
||||||
python -m mypy jedi sith.py setup.py
|
python -m mypy jedi sith.py setup.py
|
||||||
|
|
||||||
coverage:
|
coverage:
|
||||||
|
|||||||
@@ -21,7 +21,13 @@ per-file-ignores =
|
|||||||
jedi/__init__.py:F401
|
jedi/__init__.py:F401
|
||||||
jedi/inference/compiled/__init__.py:F401
|
jedi/inference/compiled/__init__.py:F401
|
||||||
jedi/inference/value/__init__.py:F401
|
jedi/inference/value/__init__.py:F401
|
||||||
exclude = jedi/third_party/* .tox/*
|
exclude =
|
||||||
|
.tox/*
|
||||||
|
jedi/third_party/*
|
||||||
|
test/completion/*
|
||||||
|
test/examples/*
|
||||||
|
test/refactor/*
|
||||||
|
test/static_analysis/*
|
||||||
|
|
||||||
[pycodestyle]
|
[pycodestyle]
|
||||||
max-line-length = 100
|
max-line-length = 100
|
||||||
|
|||||||
Reference in New Issue
Block a user