⚠️ THIS PACKAGE IS DEPRECATED
gearonix plugin
You'll first need to install ESLint:
npm i eslint --save-devNext, install eslint-plugin-gearonix:
npm install eslint-plugin-gearonix --save-devAdd gearonix-eslint-plugin to the plugins section of your .eslintrc configuration file. You can omit the eslint-plugin- prefix:
{
"plugins": [
"gearonix-eslint-plugin"
]
}Then configure the rules you want to use under the rules section.
{
"rules": {
"gearonix-eslint-plugin/rule-name": 2
}
}