react-image-filter
Version:
Lightweight React component, for applying color filters on images, works in all modern browsers plus IE10+ and Edge.
52 lines (46 loc) • 1.05 kB
Plain Text
extends:
eslint-config-airbnb
parser:
babel-eslint
settings:
ecmascript: 6
ecmaFeatures:
jsx: true
modules: true
destructuring: true
classes: true
forOf: true
blockBindings: true
arrowFunctions: true
env:
browser: true
rules:
arrow-body-style: 0
arrow-parens: 0
class-methods-use-this: 0
func-names: 0
indent: 2
new-cap: 0
no-plusplus: 0
max-len: ["error", { "code": 120 }]
no-return-assign: 0
quote-props: 0
template-curly-spacing: [2, "always"]
comma-dangle: ["error", {
"arrays": "always-multiline",
"objects": "always-multiline",
"imports": "always-multiline",
"exports": "always-multiline",
"functions": "never"
}]
jsx-quotes: [2, "prefer-single"]
react/forbid-prop-types: 0
react/jsx-curly-spacing: [2, "always"]
react/jsx-filename-extension: 0
react/jsx-boolean-value: 0
react/prefer-stateless-function: 0
react/no-unescaped-entities: 0
import/extensions: 0
import/no-extraneous-dependencies: 0
import/no-unresolved: 0
import/prefer-default-export: 0