Skip to content

Commit

Permalink
fix(eslintrc): change the explicit member accessibility rule
Browse files Browse the repository at this point in the history
  • Loading branch information
Charles Coeurderoy committed Jun 11, 2020
1 parent 1f7b25c commit 50c37c9
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions eslintrc.json
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,11 @@
"@typescript-eslint/explicit-member-accessibility": [
"error",
{
"accessibility": "explicit"
"accessibility": "explicit",
"overrides": {
"constructors": "off",
"parameterProperties": "no-public"
}
}
],
"@typescript-eslint/indent": "off",
Expand Down Expand Up @@ -163,7 +167,6 @@
"import/order": "error",
"jsdoc/check-alignment": "error",
"jsdoc/check-indentation": "error",
"jsdoc/newline-after-description": "error",
"jsdoc/no-types": "error",
"linebreak-style": "off",
"max-classes-per-file": [
Expand Down

0 comments on commit 50c37c9

Please sign in to comment.