Skip to content

Commit c8618a7

Browse files
authored
Merge pull request #4 from vaibhavvikas/develop
Changes related to logs and various code improvements
2 parents 407189a + 2f2299d commit c8618a7

File tree

4 files changed

+457
-113
lines changed

4 files changed

+457
-113
lines changed

poetry.lock

Lines changed: 180 additions & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pyproject.toml

Lines changed: 18 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "factorio-mod-downloader"
3-
version = "0.2.0"
3+
version = "0.2.1"
44
description = "One Downloader for all your factorio mods."
55
authors = ["Vaibhav Vikas <vbhvvikas@gmail.com>"]
66
license = "MIT"
@@ -25,18 +25,35 @@ chromedriver-autoinstaller = "^0.6.4"
2525
selenium = "^4.25.0"
2626
poetry-pyinstaller-plugin = "^1.2.0"
2727
beautifulsoup4 = "^4.12.3"
28+
pylint = "^3.3.1"
2829

2930
[tool.poetry.dev-dependencies]
3031
isort = ">=5.10.1"
3132

3233
[tool.poetry.scripts]
3334
factorio-mod-downloader = "factorio_mod_downloader.__main__:main"
3435

36+
[tool.poetry.group.dev.dependencies]
37+
black = "^24.10.0"
38+
3539
[tool.isort]
3640
profile = "black"
3741
force_single_line = true
3842
lines_after_imports = 2
3943

44+
[tool.black]
45+
line-length = 100
46+
skip-string-normalization = false
47+
48+
[tool.pylint]
49+
disable = [
50+
"missing-docstring",
51+
# Optional: More specific docstring warnings
52+
# "missing-class-docstring",
53+
# "missing-function-docstring",
54+
# "missing-module-docstring"
55+
]
56+
4057
[build-system]
4158
requires = ["poetry-core"]
4259
build-backend = "poetry.core.masonry.api"

0 commit comments

Comments
 (0)