├── .circleci ├── config.yml └── test_commits.py ├── .markdownlint.yaml ├── .prettierignore ├── .prettierrc.yaml ├── .spelling ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── conventions ├── application.md ├── css.md ├── django.md ├── graphql.md ├── html.md ├── patterns.md ├── pull-requests.md ├── python.md ├── shorthand.md ├── terraform.md └── testing.md ├── git.md ├── makefile └── package.json /.circleci/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octoenergy/public-conventions/HEAD/.circleci/config.yml -------------------------------------------------------------------------------- /.circleci/test_commits.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octoenergy/public-conventions/HEAD/.circleci/test_commits.py -------------------------------------------------------------------------------- /.markdownlint.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octoenergy/public-conventions/HEAD/.markdownlint.yaml -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octoenergy/public-conventions/HEAD/.prettierignore -------------------------------------------------------------------------------- /.prettierrc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octoenergy/public-conventions/HEAD/.prettierrc.yaml -------------------------------------------------------------------------------- /.spelling: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octoenergy/public-conventions/HEAD/.spelling -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octoenergy/public-conventions/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octoenergy/public-conventions/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octoenergy/public-conventions/HEAD/README.md -------------------------------------------------------------------------------- /conventions/application.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octoenergy/public-conventions/HEAD/conventions/application.md -------------------------------------------------------------------------------- /conventions/css.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octoenergy/public-conventions/HEAD/conventions/css.md -------------------------------------------------------------------------------- /conventions/django.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octoenergy/public-conventions/HEAD/conventions/django.md -------------------------------------------------------------------------------- /conventions/graphql.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octoenergy/public-conventions/HEAD/conventions/graphql.md -------------------------------------------------------------------------------- /conventions/html.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octoenergy/public-conventions/HEAD/conventions/html.md -------------------------------------------------------------------------------- /conventions/patterns.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octoenergy/public-conventions/HEAD/conventions/patterns.md -------------------------------------------------------------------------------- /conventions/pull-requests.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octoenergy/public-conventions/HEAD/conventions/pull-requests.md -------------------------------------------------------------------------------- /conventions/python.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octoenergy/public-conventions/HEAD/conventions/python.md -------------------------------------------------------------------------------- /conventions/shorthand.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octoenergy/public-conventions/HEAD/conventions/shorthand.md -------------------------------------------------------------------------------- /conventions/terraform.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octoenergy/public-conventions/HEAD/conventions/terraform.md -------------------------------------------------------------------------------- /conventions/testing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octoenergy/public-conventions/HEAD/conventions/testing.md -------------------------------------------------------------------------------- /git.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octoenergy/public-conventions/HEAD/git.md -------------------------------------------------------------------------------- /makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octoenergy/public-conventions/HEAD/makefile -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octoenergy/public-conventions/HEAD/package.json --------------------------------------------------------------------------------