https://github.com/starryinternet/eslint-config-starry
https://github.com/starryinternet/eslint-config-starry
Last synced: about 1 year ago
JSON representation
- Host: GitHub
- URL: https://github.com/starryinternet/eslint-config-starry
- Owner: StarryInternet
- License: mit
- Created: 2016-05-25T14:38:25.000Z (about 10 years ago)
- Default Branch: master
- Last Pushed: 2024-06-18T15:58:11.000Z (about 2 years ago)
- Last Synced: 2025-04-10T03:40:25.830Z (about 1 year ago)
- Language: JavaScript
- Size: 43 KB
- Stars: 3
- Watchers: 2
- Forks: 5
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
README
# eslint-config-starry
Starry JavaScript Styleguide for ESLint.
Based heavily on [Idiomatic.js](https://github.com/rwaldron/idiomatic.js/),
with some additional rules to enfore ES6 features like using `let` or `const`
instead of `var`.
### Usage
`npm install @starryinternet/eslint-config-starry @starryinternet/eslint-plugin-starry --save-dev`
Then drop an `.eslintrc` file in your project root that looks like this:
```json
{
"root": true,
"extends": "@starryinternet/starry"
}
```