-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
12 changed files
with
246 additions
and
123 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
name: Reviewdog | ||
|
||
on: | ||
push: | ||
branches: | ||
- "main" | ||
pull_request: | ||
types: | ||
- "opened" | ||
- "synchronize" | ||
|
||
defaults: | ||
run: | ||
shell: bash | ||
|
||
jobs: | ||
typos: | ||
name: typos (Spellchecker) | ||
runs-on: ubuntu-22.04 | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v4 | ||
|
||
- name: Run typos | ||
uses: Shemnei/reviewdog-action-typos@v0 | ||
with: | ||
reporter: 'github-check' | ||
fail_on_error: true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
# Documentation: <https://github.com/crate-ci/typos/blob/master/docs/reference.md> | ||
|
||
[default] | ||
locale = "en-us" | ||
|
||
[files] | ||
# Also search `.github` and other hidden files | ||
ignore-hidden = false | ||
extend-exclude = [ | ||
# Ignore .git folder | ||
".git/**", | ||
] |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
{ | ||
"$schema": "https://docs.renovatebot.com/renovate-schema.json", | ||
"extends": [ | ||
"config:recommended", | ||
":enableVulnerabilityAlertsWithLabel('security')" | ||
], | ||
"labels": [ | ||
"no-stale", | ||
"bot" | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
#import "template/mod.typ": * | ||
|
||
#show: template.with( | ||
data: json("../data/resume.json"), | ||
displayMugshot: true, | ||
debug: false | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
#import "template/mod.typ": * | ||
|
||
#show: template.with( | ||
data: json("../data/resume.json"), | ||
displayTagline: false, | ||
displaySummary: false, | ||
displayInterests: false, | ||
displayVolunteering: false, | ||
importanceFilter: 3, // filter everything that is less important than 3 | ||
maxHighlights: 2, // show only the first 2 highlights | ||
hideDescriptions: true, | ||
fontSizeAdjustment: 3pt, | ||
margins: (top: 0.4cm, bottom: 0.4cm, left: 0.4cm, right: 0.4cm), | ||
debug: false | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.