Package Exports
- eslint-config-tidy
- eslint-config-tidy/index.js
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (eslint-config-tidy) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
eslint-config-tidy 
ESLint shareable config for Tidy style
Why?
- Consistency.
- Clarity.
- Simplicity.
Install
npm install eslint-config-tidy --save-dev
Usage
All you have to do is tell your linter to use this config.
Use with XO (recommended)
Add some XO config to your package.json:
{
"name": "my-awesome-project",
"xo": {
"extend": "tidy"
}
}
Alternatively, use with ESLint
Add some ESLint config to your package.json:
{
"name": "my-awesome-project",
"eslintConfig": {
"extends": "tidy"
}
}
Related
- eslint-config-tidy-react - ESLint shareable config for React to be used with this config
Contributing
See our contributing guidelines for more details.
- Fork it.
- Make a feature branch:
git checkout -b my-new-feature
- Commit your changes:
git commit -am 'Add some feature'
- Push to the branch:
git push origin my-new-feature
- Submit a pull request.
License
Go make something, dang it.