Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/thlorenz/eslint-config-standart
Linting rules that make your code look like art that stands on it's own
https://github.com/thlorenz/eslint-config-standart
Last synced: 13 days ago
JSON representation
Linting rules that make your code look like art that stands on it's own
- Host: GitHub
- URL: https://github.com/thlorenz/eslint-config-standart
- Owner: thlorenz
- License: mit
- Created: 2016-04-07T04:23:08.000Z (almost 9 years ago)
- Default Branch: master
- Last Pushed: 2016-11-27T05:39:54.000Z (about 8 years ago)
- Last Synced: 2024-12-10T08:26:41.823Z (about 1 month ago)
- Language: JavaScript
- Homepage: https://github.com/thlorenz/standart
- Size: 2.93 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# eslint-config-standart shareable config
Linting rules that make your code look like _art_ that _stand_ s on it's own
## Installation
npm install eslint-config-standart
## What is This?
Eslint rules based on [eslint-config-standard](https://github.com/feross/eslint-config-standard) rules with some
exceptions, most importantly:- comma-first allowed
- any rules conflicting with formatting code in a tabular manner were removedUsed by [standart](https://github.com/thlorenz/standart)
## Usage
Shareable configs are designed to work with the `extends` feature of `.eslintrc` files. You can learn more about
[Shareable Configs](http://eslint.org/docs/developer-guide/shareable-configs) on the official ESLint website.To use the JavaScript Standart Style shareable config, first run this:
```bash
npm install eslint-config-standart eslint-plugin-standard eslint-plugin-promise
```Then, add this to your .eslintrc file:
```
{
"extends": "standart"
}
```*Note: We omitted the `eslint-config-` prefix since it is automatically assumed by ESLint.*
You can override settings from the shareable config by adding them directly into your `.eslintrc` file.
## License
MIT