1.1.4 • Published 8 years ago
eslint-plugin-atomic-jolt v1.1.4
eslint-plugin-atomic-jolt
Custom eslint rules for Atomic Jolt
Installation
You'll first need to install ESLint:
$ npm i eslint --save-devNext, install eslint-plugin-atomic-jolt:
$ npm install eslint-plugin-atomic-jolt --save-devNote: If you installed ESLint globally (using the -g flag) then you must also install eslint-plugin-atomic-jolt globally.
Usage
Add atomic-jolt to the plugins section of your .eslintrc configuration file. You can omit the eslint-plugin- prefix:
{
"plugins": [
"atomic-jolt"
]
}Then configure the rules you want to use under the rules section.
{
"rules": {
"atomic-jolt/rule-name": 2
}
}Supported Rules
no-splat-props // disallow {...this.props} to child react components
no-map-raw-html // disallow the returning of raw html elements from map functions