root: move pyright config to toml
Signed-off-by: Jens Langhammer <jens.langhammer@beryju.org>
This commit is contained in:
parent
2da7a8fede
commit
1aa9c0f9ca
|
@ -1,6 +1,20 @@
|
|||
[tool.pyright]
|
||||
ignore = [
|
||||
"**/migrations/**",
|
||||
"**/node_modules/**"
|
||||
]
|
||||
|
||||
reportMissingTypeStubs = false
|
||||
strictParameterNoneValue = true
|
||||
strictDictionaryInference = true
|
||||
strictListInference = true
|
||||
verboseOutput = false
|
||||
pythonVersion = "3.9"
|
||||
pythonPlatform = "Linux"
|
||||
|
||||
[tool.black]
|
||||
line-length = 100
|
||||
target-version = ['py38']
|
||||
target-version = ['py39']
|
||||
exclude = 'node_modules'
|
||||
|
||||
[tool.isort]
|
||||
|
|
|
@ -1,11 +0,0 @@
|
|||
{
|
||||
"reportMissingTypeStubs": false,
|
||||
"ignore": [
|
||||
"**/migrations/**",
|
||||
"**/node_modules/**"
|
||||
],
|
||||
"strictParameterNoneValue": true,
|
||||
"strictDictionaryInference": true,
|
||||
"strictListInference": true,
|
||||
"verboseOutput": false
|
||||
}
|
Reference in New Issue