mirror of https://github.com/coqui-ai/TTS.git
build: update to ruff 0.3.0
This commit is contained in:
parent
39149ef564
commit
1961687a18
|
@ -13,7 +13,7 @@ repos:
|
||||||
- id: black
|
- id: black
|
||||||
language_version: python3
|
language_version: python3
|
||||||
- repo: https://github.com/astral-sh/ruff-pre-commit
|
- repo: https://github.com/astral-sh/ruff-pre-commit
|
||||||
rev: v0.1.7
|
rev: v0.3.0
|
||||||
hooks:
|
hooks:
|
||||||
- id: ruff
|
- id: ruff
|
||||||
args: [--fix, --exit-non-zero-on-fix]
|
args: [--fix, --exit-non-zero-on-fix]
|
||||||
|
|
2
Makefile
2
Makefile
|
@ -48,7 +48,7 @@ style: ## update code style.
|
||||||
black ${target_dirs}
|
black ${target_dirs}
|
||||||
|
|
||||||
lint: ## run linters.
|
lint: ## run linters.
|
||||||
ruff ${target_dirs}
|
ruff check ${target_dirs}
|
||||||
black ${target_dirs} --check
|
black ${target_dirs} --check
|
||||||
|
|
||||||
system-deps: ## install linux system deps
|
system-deps: ## install linux system deps
|
||||||
|
|
|
@ -9,7 +9,7 @@ requires = [
|
||||||
|
|
||||||
[tool.ruff]
|
[tool.ruff]
|
||||||
line-length = 120
|
line-length = 120
|
||||||
extend-select = [
|
lint.extend-select = [
|
||||||
"B033", # duplicate-value
|
"B033", # duplicate-value
|
||||||
"C416", # unnecessary-comprehension
|
"C416", # unnecessary-comprehension
|
||||||
"D419", # empty-docstring
|
"D419", # empty-docstring
|
||||||
|
@ -30,7 +30,7 @@ extend-select = [
|
||||||
"W291", # trailing-whitespace
|
"W291", # trailing-whitespace
|
||||||
]
|
]
|
||||||
|
|
||||||
ignore = [
|
lint.ignore = [
|
||||||
"E501", # line too long
|
"E501", # line too long
|
||||||
"E722", # bare except (TODO: fix these)
|
"E722", # bare except (TODO: fix these)
|
||||||
"E731", # don't use lambdas
|
"E731", # don't use lambdas
|
||||||
|
@ -47,12 +47,12 @@ ignore = [
|
||||||
"PLW0603", # TODO: enable
|
"PLW0603", # TODO: enable
|
||||||
]
|
]
|
||||||
|
|
||||||
[tool.ruff.pylint]
|
[tool.ruff.lint.pylint]
|
||||||
max-args = 5
|
max-args = 5
|
||||||
max-public-methods = 20
|
max-public-methods = 20
|
||||||
max-returns = 7
|
max-returns = 7
|
||||||
|
|
||||||
[tool.ruff.per-file-ignores]
|
[tool.ruff.lint.per-file-ignores]
|
||||||
"**/__init__.py" = [
|
"**/__init__.py" = [
|
||||||
"F401", # init files may have "unused" imports for now
|
"F401", # init files may have "unused" imports for now
|
||||||
"F403", # init files may have star imports for now
|
"F403", # init files may have star imports for now
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
black
|
black
|
||||||
coverage
|
coverage
|
||||||
nose2
|
nose2
|
||||||
ruff==0.1.3
|
ruff==0.3.0
|
||||||
|
|
|
@ -64,7 +64,6 @@ class TestVits(unittest.TestCase):
|
||||||
|
|
||||||
def test_dataset(self):
|
def test_dataset(self):
|
||||||
"""TODO:"""
|
"""TODO:"""
|
||||||
...
|
|
||||||
|
|
||||||
def test_init_multispeaker(self):
|
def test_init_multispeaker(self):
|
||||||
num_speakers = 10
|
num_speakers = 10
|
||||||
|
|
Loading…
Reference in New Issue