From 375d91480dedcd6381d059585c1f0d8326efedb6 Mon Sep 17 00:00:00 2001 From: "David J. Allen" Date: Sat, 30 Jul 2022 13:01:13 -0500 Subject: [PATCH] Initialized `trunk` extension and fixed syntax error --- .markdownlint.yaml | 10 ++++++++++ .shellcheckrc | 7 +++++++ .trunk/.gitignore | 3 +++ .trunk/trunk.yaml | 11 +++++++++++ 4 files changed, 31 insertions(+) create mode 100644 .markdownlint.yaml create mode 100644 .shellcheckrc create mode 100644 .trunk/.gitignore create mode 100644 .trunk/trunk.yaml diff --git a/.markdownlint.yaml b/.markdownlint.yaml new file mode 100644 index 0000000..fb94039 --- /dev/null +++ b/.markdownlint.yaml @@ -0,0 +1,10 @@ +# Autoformatter friendly markdownlint config (all formatting rules disabled) +default: true +blank_lines: false +bullet: false +html: false +indentation: false +line_length: false +spaces: false +url: false +whitespace: false diff --git a/.shellcheckrc b/.shellcheckrc new file mode 100644 index 0000000..8c7b1ad --- /dev/null +++ b/.shellcheckrc @@ -0,0 +1,7 @@ +enable=all +source-path=SCRIPTDIR +disable=SC2154 + +# If you're having issues with shellcheck following source, disable the errors via: +# disable=SC1090 +# disable=SC1091 diff --git a/.trunk/.gitignore b/.trunk/.gitignore new file mode 100644 index 0000000..507283d --- /dev/null +++ b/.trunk/.gitignore @@ -0,0 +1,3 @@ +*out +*logs +external diff --git a/.trunk/trunk.yaml b/.trunk/trunk.yaml new file mode 100644 index 0000000..d85baee --- /dev/null +++ b/.trunk/trunk.yaml @@ -0,0 +1,11 @@ +version: 0.1 +cli: + version: 0.15.1-beta +lint: + enabled: + - git-diff-check@SYSTEM + - gitleaks@8.9.0 + - markdownlint@0.32.1 + - prettier@2.7.1 + - shellcheck@0.8.0 + - shfmt@3.5.0