-
Notifications
You must be signed in to change notification settings - Fork 28
/
pyproject.toml
43 lines (35 loc) · 986 Bytes
/
pyproject.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
[tool.poetry]
name = "flake8-spellcheck"
version = "0.28.0"
description = "Spellcheck variables, comments and docstrings"
authors = ["Michael Aquilina <[email protected]>"]
license = "MIT"
readme = "README.rst"
homepage = "https://github.com/MichaelAquilina/flake8-spellcheck"
repository = "https://github.com/MichaelAquilina/flake8-spellcheck"
keywords = ["lint", "spellcheck", "flake8"]
include = ["LICENSE"]
[tool.poetry.plugins."flake8.extension"]
SC = "flake8_spellcheck:SpellCheckPlugin"
[tool.poetry.dependencies]
python = ">=3.8"
flake8 = ">3.0.0"
[tool.poetry.dev-dependencies]
pre-commit = "*"
pytest = "*"
pytest-flake8-path = "*"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.black]
line_length=99
target_version = ["py37"]
[tool.isort]
line_length=99
profile = "black"
[tool.mypy]
ignore_missing_imports = true
disallow_untyped_defs = true
[[tool.mypy.overrides]]
module = ["tests.*"]
ignore_errors = true