From 9f6eb9ec8d998ba9740ab756437bff904617cf8c Mon Sep 17 00:00:00 2001 From: Salvydas Lukosius Date: Mon, 18 Dec 2023 23:15:56 +0000 Subject: [PATCH] renamed: static/global.css -> assets/global.css renamed: static/themes/night.css -> assets/themes/night.css --- .trunk/.gitignore | 1 + .trunk/configs/.yamllint.yaml | 10 ++++++++++ .trunk/trunk.yaml | 20 +++++++++++++------- {static => assets}/global.css | 14 ++++++++++++-- {static => assets}/themes/night.css | 0 5 files changed, 36 insertions(+), 9 deletions(-) create mode 100644 .trunk/configs/.yamllint.yaml rename {static => assets}/global.css (94%) rename {static => assets}/themes/night.css (100%) diff --git a/.trunk/.gitignore b/.trunk/.gitignore index cf2f254706..1e24652901 100644 --- a/.trunk/.gitignore +++ b/.trunk/.gitignore @@ -2,6 +2,7 @@ *logs *actions *notifications +*tools plugins user_trunk.yaml user.yaml diff --git a/.trunk/configs/.yamllint.yaml b/.trunk/configs/.yamllint.yaml new file mode 100644 index 0000000000..4d444662de --- /dev/null +++ b/.trunk/configs/.yamllint.yaml @@ -0,0 +1,10 @@ +rules: + quoted-strings: + required: only-when-needed + extra-allowed: ["{|}"] + empty-values: + forbid-in-block-mappings: true + forbid-in-flow-mappings: true + key-duplicates: {} + octal-values: + forbid-implicit-octal: true diff --git a/.trunk/trunk.yaml b/.trunk/trunk.yaml index f3e0eb5e12..73e4be07e2 100644 --- a/.trunk/trunk.yaml +++ b/.trunk/trunk.yaml @@ -1,18 +1,23 @@ version: 0.1 cli: - version: 1.5.0 + version: 1.18.1 plugins: sources: - id: trunk - ref: v0.0.11 + ref: v1.4.0 uri: https://github.com/trunk-io/plugins lint: + disabled: + - checkov + - yamllint enabled: - - markdownlint@0.33.0 + - trivy@0.48.1 + - trufflehog@3.63.4 + - markdownlint@0.38.0 - git-diff-check - - actionlint@1.6.23 - - prettier@2.8.4 - - gitleaks@8.15.3 + - actionlint@1.6.26 + - prettier@3.1.1 + - gitleaks@8.18.1 ignore: - linters: [ALL] paths: @@ -21,7 +26,8 @@ lint: - "history/**" runtimes: enabled: - - go@1.18.3 + - python@3.10.8 + - go@1.21.0 - node@18.12.1 actions: enabled: diff --git a/static/global.css b/assets/global.css similarity index 94% rename from static/global.css rename to assets/global.css index 4151e46768..1d0dd44a1a 100644 --- a/static/global.css +++ b/assets/global.css @@ -1,7 +1,17 @@ body { margin: 0; - font-family: Roboto, -apple-system, BlinkMacSystemFont, Segoe UI, Oxygen, - Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif; + font-family: + Roboto, + -apple-system, + BlinkMacSystemFont, + Segoe UI, + Oxygen, + Ubuntu, + Cantarell, + Fira Sans, + Droid Sans, + Helvetica Neue, + sans-serif; line-height: 1.5; padding-bottom: 2.5rem; } diff --git a/static/themes/night.css b/assets/themes/night.css similarity index 100% rename from static/themes/night.css rename to assets/themes/night.css