├── .github ├── ISSUE_TEMPLATE │ ├── comment.md │ ├── feature_request.md │ └── incident_report.md └── config ├── .gitignore ├── CHANGELOG.md ├── LICENSE ├── README.md ├── SECURITY.md ├── TEST ├── check-markit │ ├── FVT-cleanup.sh │ ├── FVT-setup.sh │ ├── SA-cleanup.sh │ ├── SA-setup.sh │ └── SA-shellcheck-001.expected ├── find-code.sh │ ├── FVT-cleanup.sh │ ├── FVT-setup.sh │ ├── SA-cleanup.sh │ ├── SA-setup.sh │ └── SA-shellcheck-001.expected └── markit │ ├── FVT-cleanup.sh │ ├── FVT-setup.sh │ ├── SA-cleanup.sh │ ├── SA-setup.sh │ └── SA-shellcheck-001.expected ├── check-markit ├── find-code.sh ├── hooks └── TEST │ └── post-commit │ ├── SA-cleanup.sh │ ├── SA-setup.sh │ └── SA-shellcheck-001.expected ├── images ├── check-markit-output.gif ├── clone.table.md ├── construction-icon.gif ├── github.png ├── linkedin.png ├── markit-output.gif ├── twitter.png └── view.table.md ├── markit ├── presentation ├── iphone-network ├── markit-presentation-18-10-04-13.odp ├── markit-presentation-18-10-07-01.odp ├── markit-presentation-18-10-07-02.odp ├── markit-presentation-18-10-07-03.odp ├── markit-presentation-18-10-07-04.odp ├── markit-presentation-18-10-07-05.odp ├── markit-presentation-18-10-07-06.odp ├── markit-presentation-18-10-07-07.odp ├── markit-presentation-18-10-23-03.odp ├── markit-presentation-18-11-09-01.odp └── markit-presentation-NOTES-18-10-07-05 └── testfiles ├── Dockerfile ├── Makefile ├── TEST └── sample.sh │ ├── SA-cleanup.sh │ └── SA-setup.sh ├── foo.pl ├── sample.MK ├── sample.bash ├── sample.c ├── sample.csh ├── sample.go ├── sample.h ├── sample.htm ├── sample.pl ├── sample.rb ├── sample.scala ├── sample.sh ├── sample.xml └── sample.yaml /.github/ISSUE_TEMPLATE/comment.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BradleyA/markit/HEAD/.github/ISSUE_TEMPLATE/comment.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BradleyA/markit/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/incident_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BradleyA/markit/HEAD/.github/ISSUE_TEMPLATE/incident_report.md -------------------------------------------------------------------------------- /.github/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BradleyA/markit/HEAD/.github/config -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BradleyA/markit/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BradleyA/markit/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BradleyA/markit/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BradleyA/markit/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BradleyA/markit/HEAD/SECURITY.md -------------------------------------------------------------------------------- /TEST/check-markit/FVT-cleanup.sh: -------------------------------------------------------------------------------- 1 | ../../hooks/EXAMPLES/FVT-cleanup.sh -------------------------------------------------------------------------------- /TEST/check-markit/FVT-setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BradleyA/markit/HEAD/TEST/check-markit/FVT-setup.sh -------------------------------------------------------------------------------- /TEST/check-markit/SA-cleanup.sh: -------------------------------------------------------------------------------- 1 | ../../hooks/EXAMPLES/SA-cleanup.sh -------------------------------------------------------------------------------- /TEST/check-markit/SA-setup.sh: -------------------------------------------------------------------------------- 1 | ../../hooks/EXAMPLES/SA-setup.sh -------------------------------------------------------------------------------- /TEST/check-markit/SA-shellcheck-001.expected: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BradleyA/markit/HEAD/TEST/check-markit/SA-shellcheck-001.expected -------------------------------------------------------------------------------- /TEST/find-code.sh/FVT-cleanup.sh: -------------------------------------------------------------------------------- 1 | ../../hooks/EXAMPLES/FVT-cleanup.sh -------------------------------------------------------------------------------- /TEST/find-code.sh/FVT-setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BradleyA/markit/HEAD/TEST/find-code.sh/FVT-setup.sh -------------------------------------------------------------------------------- /TEST/find-code.sh/SA-cleanup.sh: -------------------------------------------------------------------------------- 1 | ../../hooks/EXAMPLES/SA-cleanup.sh -------------------------------------------------------------------------------- /TEST/find-code.sh/SA-setup.sh: -------------------------------------------------------------------------------- 1 | ../../hooks/EXAMPLES/SA-setup.sh -------------------------------------------------------------------------------- /TEST/find-code.sh/SA-shellcheck-001.expected: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BradleyA/markit/HEAD/TEST/find-code.sh/SA-shellcheck-001.expected -------------------------------------------------------------------------------- /TEST/markit/FVT-cleanup.sh: -------------------------------------------------------------------------------- 1 | ../../hooks/EXAMPLES/FVT-cleanup.sh -------------------------------------------------------------------------------- /TEST/markit/FVT-setup.sh: -------------------------------------------------------------------------------- 1 | ../../hooks/EXAMPLES/FVT-setup.sh -------------------------------------------------------------------------------- /TEST/markit/SA-cleanup.sh: -------------------------------------------------------------------------------- 1 | ../../hooks/EXAMPLES/SA-cleanup.sh -------------------------------------------------------------------------------- /TEST/markit/SA-setup.sh: -------------------------------------------------------------------------------- 1 | ../../hooks/EXAMPLES/SA-setup.sh -------------------------------------------------------------------------------- /TEST/markit/SA-shellcheck-001.expected: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BradleyA/markit/HEAD/TEST/markit/SA-shellcheck-001.expected -------------------------------------------------------------------------------- /check-markit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BradleyA/markit/HEAD/check-markit -------------------------------------------------------------------------------- /find-code.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BradleyA/markit/HEAD/find-code.sh -------------------------------------------------------------------------------- /hooks/TEST/post-commit/SA-cleanup.sh: -------------------------------------------------------------------------------- 1 | ../../../hooks/EXAMPLES/SA-cleanup.sh -------------------------------------------------------------------------------- /hooks/TEST/post-commit/SA-setup.sh: -------------------------------------------------------------------------------- 1 | ../../../hooks/EXAMPLES/SA-setup.sh -------------------------------------------------------------------------------- /hooks/TEST/post-commit/SA-shellcheck-001.expected: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /images/check-markit-output.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BradleyA/markit/HEAD/images/check-markit-output.gif -------------------------------------------------------------------------------- /images/clone.table.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BradleyA/markit/HEAD/images/clone.table.md -------------------------------------------------------------------------------- /images/construction-icon.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BradleyA/markit/HEAD/images/construction-icon.gif -------------------------------------------------------------------------------- /images/github.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BradleyA/markit/HEAD/images/github.png -------------------------------------------------------------------------------- /images/linkedin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BradleyA/markit/HEAD/images/linkedin.png -------------------------------------------------------------------------------- /images/markit-output.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BradleyA/markit/HEAD/images/markit-output.gif -------------------------------------------------------------------------------- /images/twitter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BradleyA/markit/HEAD/images/twitter.png -------------------------------------------------------------------------------- /images/view.table.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BradleyA/markit/HEAD/images/view.table.md -------------------------------------------------------------------------------- /markit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BradleyA/markit/HEAD/markit -------------------------------------------------------------------------------- /presentation/iphone-network: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BradleyA/markit/HEAD/presentation/iphone-network -------------------------------------------------------------------------------- /presentation/markit-presentation-18-10-04-13.odp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BradleyA/markit/HEAD/presentation/markit-presentation-18-10-04-13.odp -------------------------------------------------------------------------------- /presentation/markit-presentation-18-10-07-01.odp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BradleyA/markit/HEAD/presentation/markit-presentation-18-10-07-01.odp -------------------------------------------------------------------------------- /presentation/markit-presentation-18-10-07-02.odp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BradleyA/markit/HEAD/presentation/markit-presentation-18-10-07-02.odp -------------------------------------------------------------------------------- /presentation/markit-presentation-18-10-07-03.odp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BradleyA/markit/HEAD/presentation/markit-presentation-18-10-07-03.odp -------------------------------------------------------------------------------- /presentation/markit-presentation-18-10-07-04.odp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BradleyA/markit/HEAD/presentation/markit-presentation-18-10-07-04.odp -------------------------------------------------------------------------------- /presentation/markit-presentation-18-10-07-05.odp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BradleyA/markit/HEAD/presentation/markit-presentation-18-10-07-05.odp -------------------------------------------------------------------------------- /presentation/markit-presentation-18-10-07-06.odp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BradleyA/markit/HEAD/presentation/markit-presentation-18-10-07-06.odp -------------------------------------------------------------------------------- /presentation/markit-presentation-18-10-07-07.odp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BradleyA/markit/HEAD/presentation/markit-presentation-18-10-07-07.odp -------------------------------------------------------------------------------- /presentation/markit-presentation-18-10-23-03.odp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BradleyA/markit/HEAD/presentation/markit-presentation-18-10-23-03.odp -------------------------------------------------------------------------------- /presentation/markit-presentation-18-11-09-01.odp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BradleyA/markit/HEAD/presentation/markit-presentation-18-11-09-01.odp -------------------------------------------------------------------------------- /presentation/markit-presentation-NOTES-18-10-07-05: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BradleyA/markit/HEAD/presentation/markit-presentation-NOTES-18-10-07-05 -------------------------------------------------------------------------------- /testfiles/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BradleyA/markit/HEAD/testfiles/Dockerfile -------------------------------------------------------------------------------- /testfiles/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BradleyA/markit/HEAD/testfiles/Makefile -------------------------------------------------------------------------------- /testfiles/TEST/sample.sh/SA-cleanup.sh: -------------------------------------------------------------------------------- 1 | ../../../hooks/EXAMPLES/SA-cleanup.sh -------------------------------------------------------------------------------- /testfiles/TEST/sample.sh/SA-setup.sh: -------------------------------------------------------------------------------- 1 | ../../../hooks/EXAMPLES/SA-setup.sh -------------------------------------------------------------------------------- /testfiles/foo.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BradleyA/markit/HEAD/testfiles/foo.pl -------------------------------------------------------------------------------- /testfiles/sample.MK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BradleyA/markit/HEAD/testfiles/sample.MK -------------------------------------------------------------------------------- /testfiles/sample.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BradleyA/markit/HEAD/testfiles/sample.bash -------------------------------------------------------------------------------- /testfiles/sample.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BradleyA/markit/HEAD/testfiles/sample.c -------------------------------------------------------------------------------- /testfiles/sample.csh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BradleyA/markit/HEAD/testfiles/sample.csh -------------------------------------------------------------------------------- /testfiles/sample.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BradleyA/markit/HEAD/testfiles/sample.go -------------------------------------------------------------------------------- /testfiles/sample.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BradleyA/markit/HEAD/testfiles/sample.h -------------------------------------------------------------------------------- /testfiles/sample.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BradleyA/markit/HEAD/testfiles/sample.htm -------------------------------------------------------------------------------- /testfiles/sample.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BradleyA/markit/HEAD/testfiles/sample.pl -------------------------------------------------------------------------------- /testfiles/sample.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BradleyA/markit/HEAD/testfiles/sample.rb -------------------------------------------------------------------------------- /testfiles/sample.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BradleyA/markit/HEAD/testfiles/sample.scala -------------------------------------------------------------------------------- /testfiles/sample.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BradleyA/markit/HEAD/testfiles/sample.sh -------------------------------------------------------------------------------- /testfiles/sample.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BradleyA/markit/HEAD/testfiles/sample.xml -------------------------------------------------------------------------------- /testfiles/sample.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BradleyA/markit/HEAD/testfiles/sample.yaml --------------------------------------------------------------------------------