forked from ansible/vscode-ansible
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
37 lines (34 loc) · 863 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
[tool.black]
enable-unstable-feature = ["string_processing"]
line-length = 100
preview = true
[tool.codespell]
builtin = "clear,rare,code"
check-filenames = true
check-hidden = true
ignore-words = ".config/dictionary.txt"
skip = "out,node_modules,.mypy_cache,.ruff_cache,site,codicon.css,yarn.lock,package-lock.json,.vscode-test,.git,.yarn,dictionary.txt,settings.md"
# We have no python tests in this project, but we keep this config to prevent
# vscode python extension from showing errors while trying to collect tests.
[tool.pytest.ini_options]
norecursedirs = [
"*.egg",
".cache",
".eggs",
".git",
".github",
".mypy_cache",
".projects",
".tox",
"build",
"collections",
"dist",
"docs",
"out",
"node_modules",
]
[tool.ruff]
exclude = ["examples"]
fix = true
line-length = 100
target-version = "py310"