Add: pep8-naming

This commit is contained in:
Istvan Ruzman
2020-09-03 13:42:52 +02:00
parent cc9b14f2d1
commit 2f151119c3
2 changed files with 32 additions and 1 deletions

32
poetry.lock generated
View File

@@ -133,6 +133,17 @@ pyflakes = ">=2.2.0,<2.3.0"
python = "<3.8"
version = "*"
[[package]]
category = "dev"
description = "Polyfill package for Flake8 plugins"
name = "flake8-polyfill"
optional = false
python-versions = "*"
version = "1.0.2"
[package.dependencies]
flake8 = "*"
[[package]]
category = "dev"
description = "Git Object Database"
@@ -262,6 +273,17 @@ optional = false
python-versions = ">=2.6"
version = "5.5.0"
[[package]]
category = "dev"
description = "Check PEP-8 naming conventions, plugin for flake8"
name = "pep8-naming"
optional = false
python-versions = "*"
version = "0.11.1"
[package.dependencies]
flake8-polyfill = ">=1.0.2,<2"
[[package]]
category = "dev"
description = "plugin and hook calling mechanisms for python"
@@ -546,7 +568,7 @@ docs = ["sphinx", "jaraco.packaging (>=3.2)", "rst.linker (>=1.9)"]
testing = ["jaraco.itertools", "func-timeout"]
[metadata]
content-hash = "1edd4d71194f1615bf4ed168453c25fd45ff928321afebea4fe5d332708bc5a3"
content-hash = "b9a6f928a12f0c41b7fc924a1915527592f031619b8ac0c4c159132d3429ad1c"
lock-version = "1.0"
python-versions = "^3.7"
@@ -627,6 +649,10 @@ flake8 = [
{file = "flake8-3.8.3-py2.py3-none-any.whl", hash = "sha256:15e351d19611c887e482fb960eae4d44845013cc142d42896e9862f775d8cf5c"},
{file = "flake8-3.8.3.tar.gz", hash = "sha256:f04b9fcbac03b0a3e58c0ab3a0ecc462e023a9faf046d57794184028123aa208"},
]
flake8-polyfill = [
{file = "flake8-polyfill-1.0.2.tar.gz", hash = "sha256:e44b087597f6da52ec6393a709e7108b2905317d0c0b744cdca6208e670d8eda"},
{file = "flake8_polyfill-1.0.2-py2.py3-none-any.whl", hash = "sha256:12be6a34ee3ab795b19ca73505e7b55826d5f6ad7230d31b18e106400169b9e9"},
]
gitdb = [
{file = "gitdb-4.0.5-py3-none-any.whl", hash = "sha256:91f36bfb1ab7949b3b40e23736db18231bf7593edada2ba5c3a174a7b23657ac"},
{file = "gitdb-4.0.5.tar.gz", hash = "sha256:c9e1f2d0db7ddb9a704c2a0217be31214e91a4fe1dea1efad19ae42ba0c285c9"},
@@ -706,6 +732,10 @@ pbr = [
{file = "pbr-5.5.0-py2.py3-none-any.whl", hash = "sha256:5adc0f9fc64319d8df5ca1e4e06eea674c26b80e6f00c530b18ce6a6592ead15"},
{file = "pbr-5.5.0.tar.gz", hash = "sha256:14bfd98f51c78a3dd22a1ef45cf194ad79eee4a19e8e1a0d5c7f8e81ffe182ea"},
]
pep8-naming = [
{file = "pep8-naming-0.11.1.tar.gz", hash = "sha256:a1dd47dd243adfe8a83616e27cf03164960b507530f155db94e10b36a6cd6724"},
{file = "pep8_naming-0.11.1-py2.py3-none-any.whl", hash = "sha256:f43bfe3eea7e0d73e8b5d07d6407ab47f2476ccaeff6937c84275cd30b016738"},
]
pluggy = [
{file = "pluggy-0.13.1-py2.py3-none-any.whl", hash = "sha256:966c145cd83c96502c3c3868f50408687b38434af77734af1e9ca461a4081d2d"},
{file = "pluggy-0.13.1.tar.gz", hash = "sha256:15b2acde666561e1298d71b523007ed7364de07029219b604cf808bfa1c765b0"},

View File

@@ -39,6 +39,7 @@ python = "^3.7"
[tool.poetry.dev-dependencies]
black = { version = "^19.3.10b0", allow-prereleases = true }
bandit = "^1.6"
pep8-naming = "^0.11"
pytest = "^5.4"
pytest-black = "^0.3.10"
pytest-cov = "^2.10"