Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Extensions proposal (not about making Standard "configurable") #703

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
21 changes: 21 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -252,6 +252,27 @@ Both WebStorm and PhpStorm can be [configured for Standard Style][webstorm-2].
[webstorm-1]: https://www.jetbrains.com/webstorm/
[webstorm-2]: https://github.com/feross/standard/blob/master/docs/webstorm.md

### Extensions

Extensions are a way to add official Standard Style linting rules for specific libraries.

#### Usage

Simply install each extension:

```console
$ npm i --save-dev standard-extension-<name>
```

and its rules will be included when using `standard`.

#### Available extensions

> **Note: This is a curated, [white-list](https://en.wikipedia.org/wiki/Whitelist) set of extensions.**

- [React](https://www.npmjs.com/package/standard-extension-react)
- [AVA](https://www.npmjs.com/package/standard-extension-ava)
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Of course, these do not exist, yet.


## FAQ

### Why would I use JavaScript Standard Style?
Expand Down