mirror of
https://github.com/foo-dogsquared/website.git
synced 2025-01-31 01:57:54 +00:00
25 lines
309 B
TOML
25 lines
309 B
TOML
|
[formatter.nix]
|
||
|
command = "nixpkgs-fmt"
|
||
|
includes = ["*.nix"]
|
||
|
|
||
|
[formatter.ruby]
|
||
|
command = "rufo"
|
||
|
options = ["-x"]
|
||
|
includes = ["*.rb"]
|
||
|
|
||
|
[formatter.web]
|
||
|
command = "prettier"
|
||
|
options = ["--write"]
|
||
|
includes = [
|
||
|
"*.css",
|
||
|
"*.html",
|
||
|
"*.js",
|
||
|
"*.json",
|
||
|
"*.jsx",
|
||
|
"*.md",
|
||
|
"*.mdx",
|
||
|
"*.scss",
|
||
|
"*.ts",
|
||
|
"*.yaml",
|
||
|
]
|