We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5aba147 commit f6f0bddCopy full SHA for f6f0bdd
.eslintrc
@@ -2,8 +2,15 @@
2
"extends": "airbnb",
3
"parser": "babel-eslint",
4
"rules": {
5
+ "comma-dangle": ["error", {
6
+ "arrays": "always-multiline",
7
+ "objects": "always-multiline",
8
+ "imports": "always-multiline",
9
+ "exports": "always-multiline",
10
+ "functions": "never"
11
+ }],
12
"react/forbid-prop-types": "off",
13
"react/require-default-props": "off",
- "react/no-did-mount-set-state": "off"
14
+ "react/no-did-mount-set-state": "off",
15
}
16
src/ResizeDetector.jsx
@@ -1,3 +1,4 @@
1
+/* eslint-disable jsx-a11y/alt-text */
import React, { Component } from 'react';
import PropTypes from 'prop-types';
0 commit comments