Skip to content

Commit

Permalink
chore: update builder deps
Browse files Browse the repository at this point in the history
  • Loading branch information
mishamyrt committed Jul 19, 2024
1 parent dabc493 commit 77960c2
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ check-sequential: clean-reports ## check each font file quality

.PHONY: lint
lint: ## check code quality
$(VENV) ruff $(SCRIPTS_DIR)/
$(VENV) ruff check $(SCRIPTS_DIR)/
$(VENV) pylint $(SCRIPTS_DIR)/
cd preview; pnpm eslint 'src/**/*.{svlete,ts}'

Expand Down
6 changes: 3 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
[tool.ruff]
select = [
lint.select = [
"E", # pycodestyle errors
"W", # pycodestyle warnings
"F", # pyflakes
"I", # isort
"B", # flake8-bugbear
]
ignore = [
lint.ignore = [
"E501", # line too long, handled by black
"B008", # do not perform function calls in argument defaults
"C901", # too complex
]

[tool.ruff.per-file-ignores]
[tool.ruff.lint.per-file-ignores]
"__init__.py" = ["F401"]
12 changes: 6 additions & 6 deletions requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,12 @@ fontmake==3.7.1
fonttools==4.47.0
cu2qu==1.6.7.post2
gftools==0.9.57
glyphsLib==6.7.0
glyphsLib==6.7.1
arrrgs==3.1.0
ruff==0.1.8
pylint==3.0.3
colored==2.2.3
pylance==0.8.17
fontbakery[freetype]==0.12.9
ruff==0.5.3
pylint==3.2.5
colored==2.2.4
pylance==0.14.1
fontbakery==0.12.9
dehinter==4.0.0
shaperglot==0.5.0

0 comments on commit 77960c2

Please sign in to comment.