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
ce29ccda8d
blakeblackshear.frigate
/
pyproject.toml
3 lines
65 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
.
ruff
]
Docs improvements (#8641) * go all in on ruff * upgrade docusaurus * add netlify toml * broken link * fix netlify toml * start filling out guide * add debian setup detail * simplify bash command
2023-11-18 15:04:43 +01:00
ignore
=
[
"E501"
,
"E711"
,
"E712"
]
extend-select
=
[
"I"
]
Reference in New Issue
Copy Permalink