mirror of
https://github.com/Zenithsiz/ist-ddrs-lab2
synced 2026-02-03 05:57:11 +00:00
10 lines
296 B
Plaintext
10 lines
296 B
Plaintext
linters: linters_with_defaults(
|
|
line_length_linter(120),
|
|
# We want to be able to do names like `λ1`
|
|
object_name_linter = NULL,
|
|
# We want to comment in between `if` and `else` sometimes
|
|
brace_linter = NULL,
|
|
# Useful during development
|
|
commented_code_linter = NULL
|
|
)
|