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 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
Readme: initial explanation about extensions
mightyiam committed Nov 24, 2016
commit ade4d5d0157b43673240c8e9a8cbc5770cf11967
22 changes: 22 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -252,6 +252,28 @@ 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
Contributor 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?