Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/dustinspecker/eslint-config-dustinspecker
ESLint shareable config of Dustin Specker's preferences
https://github.com/dustinspecker/eslint-config-dustinspecker
Last synced: 2 days ago
JSON representation
ESLint shareable config of Dustin Specker's preferences
- Host: GitHub
- URL: https://github.com/dustinspecker/eslint-config-dustinspecker
- Owner: dustinspecker
- License: mit
- Created: 2015-08-01T20:12:31.000Z (over 9 years ago)
- Default Branch: main
- Last Pushed: 2024-05-22T01:26:57.000Z (6 months ago)
- Last Synced: 2024-10-29T23:19:26.685Z (9 days ago)
- Language: JavaScript
- Size: 67.4 KB
- Stars: 4
- Watchers: 3
- Forks: 1
- Open Issues: 3
-
Metadata Files:
- Readme: readme.md
- License: LICENSE.md
Awesome Lists containing this project
README
# eslint-config-dustinspecker
[![NPM version](https://badge.fury.io/js/eslint-config-dustinspecker.svg)](https://badge.fury.io/js/eslint-config-dustinspecker)
[![Coverage Status](https://img.shields.io/coveralls/dustinspecker/eslint-config-dustinspecker.svg)](https://coveralls.io/r/dustinspecker/eslint-config-dustinspecker?branch=main)[![Code Climate](https://codeclimate.com/github/dustinspecker/eslint-config-dustinspecker/badges/gpa.svg)](https://codeclimate.com/github/dustinspecker/eslint-config-dustinspecker)
[![PRs Welcome](https://img.shields.io/badge/PRs-welcome-brightgreen.svg?style=flat-square)](http://makeapullrequest.com)
> ESLint [shareable](http://eslint.org/docs/developer-guide/shareable-configs.html) config of Dustin Specker's preferences
## Install
```
npm install --save-dev eslint-config-dustinspecker
```## ES5 Usage
Dependes on [eslint-plugin-no-use-extend-native](https://github.com/dustinspecker/eslint-plugin-no-use-extend-native) and [eslint-plugin-unicorn](https://github.com/sindresorhus/eslint-plugin-unicorn)
In your .eslintrc file:
```javascript
{
"extends": "dustinspecker"
}
```## ES2015 (ES6) Usage
Dependes on [eslint-plugin-no-use-extend-native](https://github.com/dustinspecker/eslint-plugin-no-use-extend-native) and [eslint-plugin-unicorn](https://github.com/sindresorhus/eslint-plugin-unicorn)
```javascript
{
"extends": "dustinspecker/esnext"
}
```## AVA usage
Depends on [eslint-plugin-ava](https://github.com/sindresorhus/eslint-plugin-ava)
```javascript
{
"extends": "dustinspecker/ava"
}
```All options from [ava.js](ava.js), [index.js](index.js), and [esnext.js](esnext.js) may be overridden in your .eslintrc file.
## LICENSE
MIT © [Dustin Specker](https://github.com/dustinspecker)