-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* chore(deps): `poetry up` * ci(pre-commit): autoupdate * ci(pre-commit): replace `mdformat` with `prettier` * ci(pre-commit): update config * ci(renovate): replace `dependabot` with `renovate` * feat(iuc): add hosting `lensdump` * feat(iuc): add hosting `tixte` * feat(vscode): update configs
- Loading branch information
Showing
11 changed files
with
180 additions
and
138 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
printWidth: 80 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
{ | ||
"$schema": "https://docs.renovatebot.com/renovate-schema.json", | ||
"automerge": true, | ||
"automergeStrategy": "squash", | ||
"commitMessageAction": "update", | ||
"dependencyDashboard": true, | ||
"extends": ["config:base"], | ||
"labels": ["deps"], | ||
"packageRules": [ | ||
{ | ||
"addLabels": ["main", "major"], | ||
"automerge": false, | ||
"description": "Disable automerge for major updates in Poetry main dependency group", | ||
"matchDepTypes": ["dependencies"], | ||
"matchManagers": ["poetry"], | ||
"matchUpdateTypes": ["major"] | ||
} | ||
], | ||
"platformAutomerge": true, | ||
"pre-commit": { | ||
"enabled": true | ||
}, | ||
"semanticCommits": "enabled" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,8 @@ | ||
{ | ||
// List of extensions which should be recommended for users of this workspace. | ||
"recommendations": [ | ||
"ms-python.python", | ||
] | ||
// List of extensions which should be recommended for users of this workspace. | ||
"recommendations": [ | ||
"ms-python.python", | ||
"ms-python.black-formatter", | ||
"ms-python.isort" | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,29 +1,19 @@ | ||
// Workspace settings override user settings. | ||
{ | ||
"[python]": { | ||
"editor.formatOnSave": true, | ||
"editor.codeActionsOnSave": { | ||
"source.organizeImports": true | ||
}, | ||
}, | ||
// black | ||
"python.formatting.provider": "black", | ||
"python.formatting.blackArgs": [], | ||
// isort | ||
"python.sortImports.args": [], | ||
// mypy | ||
"python.linting.mypyEnabled": true, | ||
"python.linting.mypyArgs": [], | ||
// flake8 | ||
"python.linting.flake8Enabled": true, | ||
"python.linting.flake8Args": [], | ||
// bandit | ||
"python.linting.banditEnabled": true, | ||
"python.linting.banditArgs": [ | ||
"-c", | ||
"pyproject.toml" | ||
], | ||
// pytest | ||
"python.testing.pytestEnabled": true, | ||
"python.testing.pytestArgs": [], | ||
"[python]": { | ||
"editor.defaultFormatter": "ms-python.black-formatter", | ||
"editor.formatOnSave": true, | ||
"editor.codeActionsOnSave": { | ||
"source.organizeImports": true | ||
} | ||
}, | ||
// mypy | ||
"python.linting.mypyEnabled": true, | ||
// flake8 | ||
"python.linting.flake8Enabled": true, | ||
// bandit | ||
"python.linting.banditEnabled": true, | ||
"python.linting.banditArgs": ["-c", "pyproject.toml"], | ||
// pytest | ||
"python.testing.pytestEnabled": true | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.