-
- Downloads
Initial commit.
parents
No related branches found
No related tags found
Showing
- .gitattributes 2 additions, 0 deletions.gitattributes
- .gitignore 23 additions, 0 deletions.gitignore
- .gitmodules 3 additions, 0 deletions.gitmodules
- README.md 36 additions, 0 deletionsREADME.md
- lint-latex 1 addition, 0 deletionslint-latex
- package-lock.json 0 additions, 0 deletionspackage-lock.json
- package.json 24 additions, 0 deletionspackage.json
- src/.gitignore 303 additions, 0 deletionssrc/.gitignore
- src/template.tex 140 additions, 0 deletionssrc/template.tex
.gitattributes
0 → 100644
.gitignore
0 → 100644
.gitmodules
0 → 100644
README.md
0 → 100644
package-lock.json
0 → 100644
This diff is collapsed.
package.json
0 → 100644
{ | ||
"name": "@unlsoft/linted-latex", | ||
"version": "1.0.0", | ||
"description": "A LaTeX project with a simple linter included.", | ||
"private": true, | ||
"license": "UNLICENSED", | ||
"scripts": { | ||
"postinstall:lint-latex": "cd lint-latex && npm install", | ||
"postinstall": "run-s postinstall:**", | ||
"lint": "lint-latex src/*.tex" | ||
}, | ||
"dependencies": { | ||
"npm-run-all": "^4.1.5" | ||
}, | ||
"devDependencies": { | ||
"@unlsoft/lint-latex": "file:lint-latex/lint-latex", | ||
"ghooks": "^2.0.4" | ||
}, | ||
"config": { | ||
"ghooks": { | ||
"pre-commit": "npm run lint" | ||
} | ||
} | ||
} |
src/.gitignore
0 → 100644
src/template.tex
0 → 100644
Please register or sign in to comment