-
Notifications
You must be signed in to change notification settings - Fork 9
Fix trunk checker fail #145
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
2954267
208fac0
cb77587
26006bf
e34834c
7290c98
46db726
8ed16bf
28fefd8
c120120
1c883e5
2ae1e56
9c4c88a
ae093ce
b6b94c3
9d0ed23
5f73d66
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -7,6 +7,9 @@ on: | |
| branches: | ||
| - main | ||
|
|
||
| permissions: | ||
| contents: read | ||
|
|
||
| jobs: | ||
| build: | ||
| name: Build static content | ||
|
|
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -22,6 +22,3 @@ jobs: | |
|
|
||
| - name: Trunk Check | ||
| uses: trunk-io/trunk-action@v1 | ||
| with: | ||
| check-mode: all | ||
| post-annotations: true | ||
|
neatudarius marked this conversation as resolved.
|
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,12 @@ | ||
| # MD033/no-inline-html : Inline HTML : https://github.com/DavidAnson/markdownlint/blob/main/doc/md033.md | ||
| # Disable inline HTML linter to allow for MDX components and Docusaurus HTML/JSX tags. | ||
| MD033: false | ||
|
|
||
| # MD024/no-duplicate-heading : Multiple headings with the same content : https://github.com/DavidAnson/markdownlint/blob/main/doc/md024.md | ||
| # Suppress warning about sibling headings while ensuring they are unique globally unless they belong to different parents. | ||
| MD024: | ||
| siblings_only: true | ||
|
|
||
| # MD025/single-title/single-h1 : Multiple top-level headings in the same document : https://github.com/DavidAnson/markdownlint/blob/main/doc/md025.md | ||
| # Disable to allow both frontmatter titles and explicit # H1 tags in the same file if needed for specific page layouts. | ||
| MD025: false |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -17,6 +17,17 @@ runtimes: | |
| - python@3.10.8 | ||
| # This is the section where you manage your linters. (https://docs.trunk.io/check/configuration) | ||
| lint: | ||
|
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. LGTM! |
||
| ignore: | ||
| - linters: [osv-scanner] | ||
| paths: [yarn.lock] | ||
| - linters: [ALL] | ||
| paths: | ||
| - docs/**/*.md | ||
| - docs/images/** | ||
| - images/** | ||
| - static/docs/images/** | ||
| - static/images/** | ||
| - static/img/** | ||
| enabled: | ||
| - actionlint@1.7.9 | ||
| - bandit@1.9.2 | ||
|
|
||
|
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. |
|
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Changes in this files are also OK to keep. |
|
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. We keep changes here. |

There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We should keep your changes in
.github/.trunkdirectories.