Add member access eslint rule

This commit is contained in:
Daniel Imms
2020-04-14 06:03:47 -07:00
parent 04c1e4b57d
commit a5ebb6d98c
+9
View File
@@ -45,6 +45,15 @@
"allowExpressions": true
}
],
"@typescript-eslint/explicit-member-accessibility": [
"error",
{
"accessibility": "explicit",
"overrides": {
"constructors": "off"
}
}
],
"@typescript-eslint/indent": [
"error",
2