This website requires JavaScript.
Explore
Help
Sign In
Mirrors
/
blakeblackshear.frigate
Watch
1
Star
0
Fork
0
You've already forked blakeblackshear.frigate
mirror of
https://github.com/blakeblackshear/frigate.git
synced
2024-11-21 19:07:46 +01:00
Code
Issues
Projects
Releases
Wiki
Activity
e5664826b1
blakeblackshear.frigate
/
pyproject.toml
5 lines
75 B
TOML
Raw
Normal View
History
Unescape
Escape
Add isort and ruff linter (#6575) * Add isort and ruff linter Both linters are pretty common among modern python code bases. The isort tool provides stable sorting and grouping, as well as pruning of unused imports. Ruff is a modern linter, that is very fast due to being written in rust. It can detect many common issues in a python codebase. Removes the pylint dev requirement, since ruff replaces it. * treewide: fix issues detected by ruff * treewide: fix bare except clauses * .devcontainer: Set up isort * treewide: optimize imports * treewide: apply black * treewide: make regex patterns raw strings This is necessary for escape sequences to be properly recognized.
2023-05-29 12:31:17 +02:00
[
tool
.
isort
]
profile
=
"black"
[
tool
.
ruff
]
Fix bug introduced in new linter (#6754) * Fix bug introduced in new linter * Ignore this error * Fix more * Ignore boolean error too
2023-06-11 14:18:47 +02:00
ignore
=
[
"E501"
,
"E711"
,
"E712"
]
Reference in New Issue
Copy Permalink