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 dotfiles/.eslintrc
Original file line number Diff line number Diff line change
Expand Up @@ -116,6 +116,7 @@
"react/display-name": 0,
"react/jsx-uses-react": 1,
"react/jsx-pascal-case": 2,
"react/prefer-es6-class": 2,
"semi": 1,
"strict": [2, "global"],
"use-isnan": 2,
Expand Down
3 changes: 2 additions & 1 deletion es5/fix.js
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,8 @@ var es5Options = {
sourceType: 'script'
},
rules: {
'react/display-name': 2
'react/display-name': 2,
"react/prefer-es6-class": 0,
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@mpaulucci Does this work?

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

it should! 👍

}
}
};
Expand Down