From fa8a89625b6cee84c67b0620ab66cc1aeb273524 Mon Sep 17 00:00:00 2001 From: Kyle Isom Date: Fri, 20 Oct 2023 03:05:12 -0700 Subject: [PATCH] add trunk config to repo --- .gitignore | 1 - .trunk/.gitignore | 8 ++++++++ .trunk/trunk.yaml | 27 +++++++++++++++++++++++++++ 3 files changed, 35 insertions(+), 1 deletion(-) create mode 100644 .trunk/.gitignore create mode 100644 .trunk/trunk.yaml diff --git a/.gitignore b/.gitignore index 2c8e75c..1601f72 100644 --- a/.gitignore +++ b/.gitignore @@ -1,4 +1,3 @@ -.trunk .vc .vscode diff --git a/.trunk/.gitignore b/.trunk/.gitignore new file mode 100644 index 0000000..1e24652 --- /dev/null +++ b/.trunk/.gitignore @@ -0,0 +1,8 @@ +*out +*logs +*actions +*notifications +*tools +plugins +user_trunk.yaml +user.yaml diff --git a/.trunk/trunk.yaml b/.trunk/trunk.yaml new file mode 100644 index 0000000..c69c773 --- /dev/null +++ b/.trunk/trunk.yaml @@ -0,0 +1,27 @@ +# This file controls the behavior of Trunk: https://docs.trunk.io/cli +# To learn more about the format of this file, see https://docs.trunk.io/reference/trunk-yaml +version: 0.1 +cli: + version: 1.17.1 +plugins: + sources: + - id: trunk + ref: v1.2.6 + uri: https://github.com/trunk-io/plugins +runtimes: + enabled: + - python@3.10.8 +lint: + enabled: + - include-what-you-use@0.20 + - checkov@2.5.9 + - circleci@0.1.29041 + - clang-tidy@16.0.3 + - git-diff-check + - trufflehog@3.60.0 +actions: + disabled: + - trunk-announce + - trunk-check-pre-push + - trunk-fmt-pre-commit + - trunk-upgrade-available