Skip to content

Commit

Permalink
Merge pull request #31 from KotlinIsland/ide_config_stuff
Browse files Browse the repository at this point in the history
Ide config stuff
  • Loading branch information
DetachHead authored Jan 27, 2022
2 parents caf45a2 + 49c9016 commit d81a077
Show file tree
Hide file tree
Showing 7 changed files with 55 additions and 48 deletions.
11 changes: 3 additions & 8 deletions .idea/python-project.iml → .idea/basedtyping.iml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

19 changes: 15 additions & 4 deletions .idea/inspectionProfiles/Project_Default.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion .idea/modules.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 6 additions & 0 deletions .idea/pylint.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

16 changes: 16 additions & 0 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"name": "current file justMyCode disabled",
"type": "python",
"request": "launch",
"program": "${file}",
"console": "integratedTerminal",
"justMyCode": false
}
]
}
29 changes: 13 additions & 16 deletions poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

20 changes: 1 addition & 19 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,7 @@ python = "^3.10"
[tool.poetry.dev-dependencies]
black = "^21.12b0"
flake8 = "^4.0.1"
# https://github.com/KotlinIsland/basedmypy/pull/131
basedmypy = { git = "https://github.com/KotlinIsland/basedmypy.git", rev = "e5d40fc37d8d6eca75d8784020d82b4574b042b7" }
basedmypy = "^1.2.2"
pylint = "^2.11.2"
pytest = "^7.0.0rc1"
isort = "^5.10.1"
Expand All @@ -23,23 +22,6 @@ isort = "^5.10.1"
build-backend = "poetry.core.masonry.api"
requires = ["poetry-core>=1.0.7"]

[tool.mypy]
allow_redefinition = true
disallow_any_decorated = true
disallow_any_explicit = true
disallow_any_expr = true
disallow_any_generics = true
disallow_any_unimported = true
disallow_subclassing_any = true
disallow_untyped_calls = true
disallow_untyped_decorators = true
disallow_untyped_defs = true
show_error_codes = true
warn_redundant_casts = true
warn_return_any = true
warn_unreachable = true
warn_unused_ignores = true

[tool.isort]
profile = "black"
multi_line_output = 3
Expand Down

0 comments on commit d81a077

Please sign in to comment.