Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions dist/.eslintrc
Original file line number Diff line number Diff line change
Expand Up @@ -109,6 +109,7 @@
"no-with": 2,
"prefer-const": 1,
"radix": 2,
"react/display-name": 0,
"react/jsx-uses-react": 1,
"strict": [2,"global"],
"use-isnan": 2,
Expand Down
1 change: 1 addition & 0 deletions dist/es5/.eslintrc
Original file line number Diff line number Diff line change
Expand Up @@ -189,6 +189,7 @@
"no-with": 2,
"prefer-const": 1,
"radix": 2,
"react/display-name": 2,
"react/jsx-uses-react": 1,
"strict": [
2,
Expand Down
1 change: 1 addition & 0 deletions dotfiles/.eslintrc
Original file line number Diff line number Diff line change
Expand Up @@ -112,6 +112,7 @@
"no-with": 2,
"prefer-const": 1,
"radix": 2,
"react/display-name": 0,
"react/jsx-uses-react": 1,
"strict": [2, "global"],
"use-isnan": 2,
Expand Down
3 changes: 3 additions & 0 deletions es5/fix.js
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,9 @@ var es5Options = {
parserOptions: {
ecmaVersion: 5,
sourceType: 'script'
},
rules: {
'react/display-name': 2
}
}
};
Expand Down