├── .editorconfig ├── .gitignore ├── .jshintrc ├── LICENSE ├── README.md ├── http.md ├── javascript-editor-style.md ├── javascript-error-handling.md ├── javascript-organization.md ├── javascript-performance.md ├── javascript-style.md ├── koa.md ├── repositories.md └── templates.md /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonathanong/style-guide/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | 2 | .DS_Store* 3 | *.log 4 | *.gz 5 | 6 | node_modules 7 | coverage 8 | cache 9 | -------------------------------------------------------------------------------- /.jshintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonathanong/style-guide/HEAD/.jshintrc -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonathanong/style-guide/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonathanong/style-guide/HEAD/README.md -------------------------------------------------------------------------------- /http.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonathanong/style-guide/HEAD/http.md -------------------------------------------------------------------------------- /javascript-editor-style.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonathanong/style-guide/HEAD/javascript-editor-style.md -------------------------------------------------------------------------------- /javascript-error-handling.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonathanong/style-guide/HEAD/javascript-error-handling.md -------------------------------------------------------------------------------- /javascript-organization.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonathanong/style-guide/HEAD/javascript-organization.md -------------------------------------------------------------------------------- /javascript-performance.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonathanong/style-guide/HEAD/javascript-performance.md -------------------------------------------------------------------------------- /javascript-style.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonathanong/style-guide/HEAD/javascript-style.md -------------------------------------------------------------------------------- /koa.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonathanong/style-guide/HEAD/koa.md -------------------------------------------------------------------------------- /repositories.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonathanong/style-guide/HEAD/repositories.md -------------------------------------------------------------------------------- /templates.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonathanong/style-guide/HEAD/templates.md --------------------------------------------------------------------------------