ESLint shareable config for Tidy style.
ESLint shareable config for Tidy style
npm install eslint-config-tidy --save-dev
All you have to do is tell your linter to use this config.
Add some XO config to your package.json:
{
"name": "my-awesome-project",
"xo": {
"extend": "tidy"
}
}
Add some ESLint config to your package.json:
{
"name": "my-awesome-project",
"eslintConfig": {
"extends": "tidy"
}
}
See our contributing guidelines for more details.
git checkout -b my-new-feature
git commit -am 'Add some feature'
git push origin my-new-feature
Go make something, dang it.