├── .gitignore ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── README-ir.md ├── README-it.md ├── README-ja.md ├── README-ko.md ├── README-pt-BR.md ├── README-ru.md ├── README-zh.md ├── README.md ├── README.sample.md ├── config.sample.js ├── configWithTest.sample.js └── images ├── accessibility.png ├── api.png ├── branching.png ├── code-style.png ├── documentation.png ├── elsewhen-logo.png ├── folder-tree.png ├── git.png ├── github.png ├── laptop.png ├── licensing.png ├── logging.png ├── logo.sample.png ├── modules.png └── testing.png /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elsewhencode/project-guidelines/HEAD/.gitignore -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elsewhencode/project-guidelines/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elsewhencode/project-guidelines/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elsewhencode/project-guidelines/HEAD/LICENSE -------------------------------------------------------------------------------- /README-ir.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elsewhencode/project-guidelines/HEAD/README-ir.md -------------------------------------------------------------------------------- /README-it.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elsewhencode/project-guidelines/HEAD/README-it.md -------------------------------------------------------------------------------- /README-ja.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elsewhencode/project-guidelines/HEAD/README-ja.md -------------------------------------------------------------------------------- /README-ko.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elsewhencode/project-guidelines/HEAD/README-ko.md -------------------------------------------------------------------------------- /README-pt-BR.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elsewhencode/project-guidelines/HEAD/README-pt-BR.md -------------------------------------------------------------------------------- /README-ru.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elsewhencode/project-guidelines/HEAD/README-ru.md -------------------------------------------------------------------------------- /README-zh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elsewhencode/project-guidelines/HEAD/README-zh.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elsewhencode/project-guidelines/HEAD/README.md -------------------------------------------------------------------------------- /README.sample.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elsewhencode/project-guidelines/HEAD/README.sample.md -------------------------------------------------------------------------------- /config.sample.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elsewhencode/project-guidelines/HEAD/config.sample.js -------------------------------------------------------------------------------- /configWithTest.sample.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elsewhencode/project-guidelines/HEAD/configWithTest.sample.js -------------------------------------------------------------------------------- /images/accessibility.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elsewhencode/project-guidelines/HEAD/images/accessibility.png -------------------------------------------------------------------------------- /images/api.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elsewhencode/project-guidelines/HEAD/images/api.png -------------------------------------------------------------------------------- /images/branching.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elsewhencode/project-guidelines/HEAD/images/branching.png -------------------------------------------------------------------------------- /images/code-style.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elsewhencode/project-guidelines/HEAD/images/code-style.png -------------------------------------------------------------------------------- /images/documentation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elsewhencode/project-guidelines/HEAD/images/documentation.png -------------------------------------------------------------------------------- /images/elsewhen-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elsewhencode/project-guidelines/HEAD/images/elsewhen-logo.png -------------------------------------------------------------------------------- /images/folder-tree.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elsewhencode/project-guidelines/HEAD/images/folder-tree.png -------------------------------------------------------------------------------- /images/git.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elsewhencode/project-guidelines/HEAD/images/git.png -------------------------------------------------------------------------------- /images/github.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elsewhencode/project-guidelines/HEAD/images/github.png -------------------------------------------------------------------------------- /images/laptop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elsewhencode/project-guidelines/HEAD/images/laptop.png -------------------------------------------------------------------------------- /images/licensing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elsewhencode/project-guidelines/HEAD/images/licensing.png -------------------------------------------------------------------------------- /images/logging.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elsewhencode/project-guidelines/HEAD/images/logging.png -------------------------------------------------------------------------------- /images/logo.sample.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elsewhencode/project-guidelines/HEAD/images/logo.sample.png -------------------------------------------------------------------------------- /images/modules.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elsewhencode/project-guidelines/HEAD/images/modules.png -------------------------------------------------------------------------------- /images/testing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elsewhencode/project-guidelines/HEAD/images/testing.png --------------------------------------------------------------------------------