An open API service indexing awesome lists of open source software.

https://github.com/60frames/coding-standards

60fram.es coding standards
https://github.com/60frames/coding-standards

Last synced: 29 days ago
JSON representation

60fram.es coding standards

Awesome Lists containing this project

README

          

# coding-standards

This README will eventually outline coding standards and preferred best
practices which cannot be enforced through automated tools.

## .eslintrc example usage
```
.
├── src
│   ├── .eslintrc /* extends .eslintrc-browser || .eslintrc-react */
│   └── test
│   └── .eslintrc /* extends .eslintrc-test */
└── server
├── .eslintrc /* extends .eslintrc-node */
└── test
└── .eslintrc /* extends .eslintrc-test */
```