Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/not-an-aardvark/eslint-config
My personal ESLint config
https://github.com/not-an-aardvark/eslint-config
Last synced: 22 days ago
JSON representation
My personal ESLint config
- Host: GitHub
- URL: https://github.com/not-an-aardvark/eslint-config
- Owner: not-an-aardvark
- License: mit
- Created: 2016-11-02T20:02:20.000Z (about 8 years ago)
- Default Branch: master
- Last Pushed: 2017-07-06T07:49:34.000Z (over 7 years ago)
- Last Synced: 2024-10-11T18:38:02.620Z (25 days ago)
- Language: JavaScript
- Size: 38.1 KB
- Stars: 0
- Watchers: 3
- Forks: 2
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- Contributing: CONTRIBUTING.md
- License: LICENSE.md
Awesome Lists containing this project
README
# eslint-config-not-an-aardvark [![Build Status](https://travis-ci.org/not-an-aardvark/eslint-config.svg?branch=master)](https://travis-ci.org/not-an-aardvark/eslint-config)
This is a shareable ESLint config for my personal JavaScript code style preferences.
### Installation
```bash
npm install eslint eslint-config-not-an-aardvark --save-dev
```### Requirements
* Node.js 4+
* ESLint 3.9.1+### Usage
Add the following to your `.eslintrc.json` file:
```json
{
"extends": ["not-an-aardvark"]
}
```For Node.js projects:
```json
{
"extends": ["not-an-aardvark/node"]
}
```For projects that don't use ES2015:
```json
{
"extends": ["not-an-aardvark/es5"]
}
```### Development
To install:
```bash
git clone https://github.com/not-an-aardvark/eslint-config.git
cd eslint-config/
npm install
```To run the tests:
```bash
npm test
```### Contributing
See [CONTRIBUTING.md](https://github.com/not-an-aardvark/eslint-config/blob/master/CONTRIBUTING.md).
### License
This project is freely distributable under the [MIT License](https://github.com/not-an-aardvark/eslint-config/blob/master/LICENSE.md).