Skip to content

Commit

Permalink
feat: suppress explicit member accessibility modifier
Browse files Browse the repository at this point in the history
  • Loading branch information
slavik-chapelskyi committed May 6, 2019
1 parent 7e9c6f4 commit 76dc2ef
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion frontend-typescript.js
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,9 @@ module.exports = {
},
rules: {
'@typescript-eslint/no-use-before-define': 0,
'@typescript-eslint/camelcase': 0
'@typescript-eslint/camelcase': 0,
// it fail to compile TS on react static class properties (displayName | defaultProps | etc..)
'@typescript-eslint/explicit-member-accessibility': 0
},
overrides: [
{
Expand Down

0 comments on commit 76dc2ef

Please sign in to comment.