@igloosoftware/eslint-plugin-igloo
v1.0.2
Published
Igloo custom rules plugin for ESLint
Downloads
6
Readme
eslint-plugin-igloo Igloo's custom rules for ESLint
Creating custom rules
By convention, rules live under lib/rules
and their corresponding tests are under /tests/lib/rules
.
Require your rule in the projects root index.js file and provide recommended defaults.
'my-new-rule': require('./lib/rules/my-new-rule'),
You can run the associated tests via npm test