forked from wireapp/wire-server
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtreefmt.toml
55 lines (53 loc) · 1.59 KB
/
treefmt.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
[formatter.nix]
command = "nixpkgs-fmt"
includes = ["*.nix"]
excludes = [
"nix/sources.nix" # managed by niv.
]
[formatter.cabal-fmt]
command = "cabal-fmt"
options = [ "--inplace" ]
includes = [ "*.cabal" ]
excludes = [
"dist-newstyle/"
]
[formatter.shellcheck]
command = "shellcheck"
includes = ["*.sh"]
excludes = [
"dist-newstyle/",
"services/nginz/third_party/",
"libs/wire-api/test/golden/gentests.sh",
"changelog.d/mk-changelog.sh",
"hack/bin/diff-failure.sh",
"hack/bin/python3.sh",
"hack/bin/cabal-run-tests.sh",
"hack/bin/integration-teardown-federation.sh",
"hack/bin/integration-setup-federation.sh",
"hack/bin/serve-charts.sh",
"hack/bin/cabal-install-artefacts.sh",
"hack/bin/helm-template.sh",
"hack/bin/set-chart-image-version.sh",
"hack/bin/copy-charts.sh",
"hack/bin/set-helm-chart-version.sh",
"hack/bin/integration-spring-cleaning.sh",
"hack/bin/upload-helm-charts-s3.sh",
"hack/bin/integration-test-logs.sh",
"services/nginz/nginz_reload.sh",
"services/spar/test-scim-suite/mk_collection.sh",
"services/spar/test-scim-suite/runsuite.sh",
"services/spar/test-scim-suite/run.sh",
"services/brig/federation-tests.sh",
"hack/bin/create_test_team_members.sh",
"hack/bin/create_test_team_scim.sh",
"hack/bin/create_test_user.sh",
"hack/bin/create_team_members.sh",
"hack/bin/register_idp_internal.sh",
"hack/bin/create_test_team_admins.sh",
"deploy/dockerephemeral/init.sh",
"tools/nginz_disco/nginz_disco.sh",
"tools/rebase-onto-formatter.sh",
"tools/sftd_disco/sftd_disco.sh",
"tools/ormolu.sh",
"tools/db/move-team/dump_merge_teams.sh"
]