-
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.
add chktex compatibility and enable in VS Code. Add lint.yml workflow…
… for #2. Update name of create-pdf in favor of build-and-deploy
- Loading branch information
1 parent
4e241ea
commit 284ef7d
Showing
6 changed files
with
59 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
##################################################################### | ||
# | ||
# Enter which type of quote-style you are using here. Currently, we | ||
# support the following styles: | ||
# | ||
# Style Example of use | ||
# Traditional "An example," he said, "would be great." | ||
# Logical "An example", he said, "would be great". | ||
# | ||
|
||
QuoteStyle = Traditional | ||
|
||
##################################################################### | ||
# | ||
# Enter here what interval you have between your tabs. Only regular | ||
# intervals are supported. | ||
# | ||
|
||
TabSize = 8 |
File renamed without changes.
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,21 @@ | ||
name: Lint TeX | ||
|
||
on: | ||
push: | ||
branches: [ main, drafting ] | ||
pull_request: | ||
branches: [ main, drafting ] | ||
workflow_dispatch: | ||
|
||
jobs: | ||
lint: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v4 | ||
with: | ||
ref: ${{ github.head_ref }} | ||
- name: ChkTeX Linter | ||
uses: j2kun/[email protected] | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |
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 @@ | ||
.chktexrc |
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 |
---|---|---|
|
@@ -2,5 +2,6 @@ | |
"recommendations": [ | ||
"james-yu.latex-workshop", | ||
"tecosaur.latex-utilities", | ||
"davidanson.vscode-markdownlint" | ||
] | ||
} |
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