Files
tinygrad/ruff.toml
George Hotz 6d6eb9302d ruff checks the max line length is 150 (#2734)
* ruff checks the max line length is 150

* fix tensor.py

* a lot more

* done
2023-12-12 17:34:47 -08:00

36 lines
375 B
TOML

indent-width = 2
select = [
"F",
"W6",
"E71",
"E72",
"E112",
"E113",
# "E124",
"E203",
"E272",
# "E303",
# "E304",
"E501",
# "E502",
"E702",
"E703",
"E731",
"W191",
"W291",
"W293",
"UP039", # unnecessary-class-parentheses
]
line-length = 150
exclude = [
"disassemblers/",
"docs/",
"examples/",
"extra/",
"openpilot/",
]