Skip to content
Snippets Groups Projects
Commit 4b8331de authored by Corné Lukken's avatar Corné Lukken
Browse files

Configure linters through pyproject.toml

parent f3473511
No related branches found
No related tags found
1 merge request!1Initial binary wheel setup
Pipeline #52976 passed
Pipeline: Python Binary Wheel Package

#52977

    ...@@ -46,3 +46,16 @@ archs = ["AMD64", "x86"] ...@@ -46,3 +46,16 @@ archs = ["AMD64", "x86"]
    [tool.pylint] [tool.pylint]
    ignore = "_version.py" ignore = "_version.py"
    [tool.flake8]
    max-line-length = 88
    extend-ignore = ["E203"]
    exclude = ["_version.py"]
    [tool.black]
    line-length = 88
    extend-exclude = '''
    (
    _version.py
    )
    '''
    ...@@ -2,6 +2,7 @@ autopep8 >= 1.7.0 # MIT ...@@ -2,6 +2,7 @@ autopep8 >= 1.7.0 # MIT
    black >= 22.0.0 # MIT black >= 22.0.0 # MIT
    build >= 0.8.0 # MIT build >= 0.8.0 # MIT
    flake8 >= 5.0.0 # MIT flake8 >= 5.0.0 # MIT
    pyproject-flake8 >= 5.0.4 # Unlicense
    pylint >= 2.15.0 # GPLv2 pylint >= 2.15.0 # GPLv2
    pytest >= 7.0.0 # MIT pytest >= 7.0.0 # MIT
    pytest-cov >= 3.0.0 # MIT pytest-cov >= 3.0.0 # MIT
    0% Loading or .
    You are about to add 0 people to the discussion. Proceed with caution.
    Please register or to comment