From e70c1abbf00bb65659e3b9d69f75122d3bb16469 Mon Sep 17 00:00:00 2001 From: Ethan Paul Date: Tue, 5 Apr 2022 00:17:41 -0400 Subject: [PATCH] Initial commit --- .gitignore | 17 +++++++++++++++++ .pre-commit-config.yaml | 16 ++++++++++++++++ LICENSE.md | 5 +++++ Makefile | 12 ++++++++++++ README.md | 6 ++++++ 5 files changed, 56 insertions(+) create mode 100644 .gitignore create mode 100644 .pre-commit-config.yaml create mode 100644 LICENSE.md create mode 100644 Makefile create mode 100644 README.md diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..7f1691c --- /dev/null +++ b/.gitignore @@ -0,0 +1,17 @@ +### TeX ### +## Core latex/pdflatex auxiliary files: +*.aux +*.lof +*.log +*.lot +*.fls +*.out +*.toc + +## Intermediate documents: +*.dvi +*-converted-to.* + +## Output +*.pdf +publish/ diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml new file mode 100644 index 0000000..db6aa09 --- /dev/null +++ b/.pre-commit-config.yaml @@ -0,0 +1,16 @@ +--- +repos: + - repo: https://github.com/pre-commit/pre-commit-hooks + rev: v4.1.0 + hooks: + - id: end-of-file-fixer + types: + - text + + - id: trailing-whitespace + types: + - text + + - id: check-merge-conflict + types: + - text diff --git a/LICENSE.md b/LICENSE.md new file mode 100644 index 0000000..dbaf9c9 --- /dev/null +++ b/LICENSE.md @@ -0,0 +1,5 @@ +# Creative Commons Attribution 4.0 International License + +This work is licensed under the Creative Commons Attribution 4.0 International License. +To view a copy of this license, visit http://creativecommons.org/licenses/by/4.0/ +or send a letter to Creative Commons, PO Box 1866, Mountain View, CA 94042, USA. diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..a8ba0d0 --- /dev/null +++ b/Makefile @@ -0,0 +1,12 @@ +# net proposal makefile + +.PHONY: help +# Put it first so that "make" without argument is like "make help" +# Adapted from: +# https://marmelab.com/blog/2016/02/29/auto-documented-makefile.html +help: ## List Makefile targets + $(info Makefile documentation) + @grep -E '^[a-zA-Z_-]+:.*?## .*$$' $(MAKEFILE_LIST) | sort | awk 'BEGIN {FS = ":.*?## "}; {printf "\033[36m%-10s\033[0m %s\n", $$1, $$2}' + +clean: ## Clean up temp resources + rm --recursive --force publish/ diff --git a/README.md b/README.md new file mode 100644 index 0000000..b58b53c --- /dev/null +++ b/README.md @@ -0,0 +1,6 @@ +# New England Transit Proposal + +[![CC BY](https://i.creativecommons.org/l/by/4.0/88x31.png)](https://creativecommons.org/licenses/by/4.0/) + +This work is licensed under a +[Creative Commons Attribution 4.0 International License](https://creativecommons.org/licenses/by/4.0/).