mirror of
https://github.com/nix-community/disko.git
synced 2024-11-04 05:44:29 +03:00
4ba8181319
As discussed in [this comment](https://github.com/nix-community/disko/pull/143#discussion_r1097912402), as a blanket rule converting everything possible to `inherit` like statements can hurt readability. Add config file for statix to disable these checks and fixes, then rerun the autofix with these options.
5 lines
192 B
TOML
5 lines
192 B
TOML
disabled = [
|
|
"manual_inherit", # Prefer `inherit types;` instead of `types = types;`
|
|
"manual_inherit_from", # Prefer `inherit (eval) options;` instead of `options = eval.options`.
|
|
]
|