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
- Host: GitHub
- URL: https://github.com/60frames/coding-standards
- Owner: 60frames
- License: mit
- Created: 2015-07-04T20:56:59.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2016-07-31T18:48:49.000Z (over 9 years ago)
- Last Synced: 2025-02-23T08:19:45.122Z (11 months ago)
- Homepage:
- Size: 10.7 KB
- Stars: 0
- Watchers: 4
- Forks: 1
- Open Issues: 4
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
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 */
```