eslint-config-tidy 
ESLint shareable config for Tidy style
Why?
- Consistency.
- Clarity.
- Simplicity.
Install
npm install eslint-config-tidy --save-devUsage
All you have to do is tell your linter to use this config.
Use with XO (recommended)
Add an xo.config.js file to your project:
import tidy from 'eslint-config-tidy';
export default [
...tidy
];Alternatively, use with ESLint
Add an eslint.config.js file to your project:
import tidy from 'eslint-config-tidy';
export default [
...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.