Skip to content

Commit

Permalink
docs(eslint-plugin): [explicit-member-accessibility] Add an example (#…
Browse files Browse the repository at this point in the history
  • Loading branch information
koooge committed Sep 27, 2020
1 parent d78ae54 commit 2b2224b
Showing 1 changed file with 4 additions and 0 deletions.
Expand Up @@ -258,6 +258,10 @@ class Animal {
class Animal {
constructor(public animalName: string) {}
}

class Animal {
constructor(animalName: string) {}
}
```

e.g. `[ { accessibility: 'off', overrides: { parameterProperties: 'no-public' } } ]`
Expand Down

0 comments on commit 2b2224b

Please sign in to comment.