├── .gitignore ├── .husky ├── .gitignore └── pre-commit ├── README.md ├── epilot-logo.png └── package.json /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | -------------------------------------------------------------------------------- /.husky/.gitignore: -------------------------------------------------------------------------------- 1 | _ 2 | -------------------------------------------------------------------------------- /.husky/pre-commit: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | . "$(dirname $0)/_/husky.sh" 3 | 4 | npm run toc 5 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epilot-dev/engineering-principles/HEAD/README.md -------------------------------------------------------------------------------- /epilot-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epilot-dev/engineering-principles/HEAD/epilot-logo.png -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epilot-dev/engineering-principles/HEAD/package.json --------------------------------------------------------------------------------