Skip to content

Commit ab5faa6

Browse files
committed
Adapt pyproject.toml to be the same
1 parent 052850b commit ab5faa6

File tree

2 files changed

+7
-14
lines changed

2 files changed

+7
-14
lines changed

project-template/{{cookiecutter.repo_name}}/pyproject.toml

Lines changed: 6 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -51,24 +51,19 @@ force_grid_wrap = 2
5151
[tool.pylint.master]
5252
fail-under = 5.0
5353
output-format = "colorized,json:.lint.json,text:.lint.txt"
54-
ignore = [
55-
"noxfile.py",
56-
"noxconfig.py",
57-
"version.py",
58-
]
59-
ignore-paths = [
60-
".*/test/.*",
61-
]
54+
ignore = []
6255

6356
[tool.pylint.format]
6457
max-line-length = 88
6558
max-module-lines = 800
6659

67-
[tool.mypy]
68-
ignore_errors = true
69-
7060
[[tool.mypy.overrides]]
7161
module = [
7262
"test.*",
7363
]
7464
ignore_errors = true
65+
66+
[tool.sonar]
67+
projectKey = "com.exasol:{{cookiecutter.repo_name}}"
68+
hostUrl = "https://sonarcloud.io"
69+
organization = "exasol"

pyproject.toml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -86,20 +86,18 @@ source = [
8686
[tool.coverage.report]
8787
fail_under = 15
8888

89-
9089
[tool.black]
9190
line-length = 88
9291
verbose = false
9392
include = "\\.pyi?$"
9493

95-
9694
[tool.isort]
9795
profile = "black"
9896
force_grid_wrap = 2
9997

100-
10198
[tool.pylint.master]
10299
fail-under = 7.5
100+
output-format = "colorized,json:.lint.json,text:.lint.txt"
103101

104102
[tool.pylint.format]
105103
max-line-length = 88

0 commit comments

Comments
 (0)