https://github.com/jaydenseric/eslint-config-barebones
Barebones ESLint config, extending JavaScript Standard Style.
https://github.com/jaydenseric/eslint-config-barebones
Last synced: 9 months ago
JSON representation
Barebones ESLint config, extending JavaScript Standard Style.
- Host: GitHub
- URL: https://github.com/jaydenseric/eslint-config-barebones
- Owner: jaydenseric
- Created: 2016-09-25T04:34:03.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2016-11-13T23:44:59.000Z (about 9 years ago)
- Last Synced: 2025-03-25T05:01:47.437Z (10 months ago)
- Language: JavaScript
- Homepage:
- Size: 2.93 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
Awesome Lists containing this project
README
# Barebones ESLint config



The ESLint sharable config used in [Barebones](https://github.com/jaydenseric/Barebones).
- Extends [JavaScript Standard Style](https://github.com/feross/eslint-config-standard).
- [MIT license](https://en.wikipedia.org/wiki/MIT_License).
## Setup
Install via NPM:
```bash
npm install eslint-config-barebones --save-dev
```
Extend this config in your project's [ESLint config](http://eslint.org/docs/user-guide/configuring#using-a-shareable-configuration-package):
```json
"eslintConfig": {
"extends": "barebones"
}
```
---
[](https://github.com/jaydenseric/Barebones)