aboutsummaryrefslogtreecommitdiff
path: root/tslint.json
diff options
context:
space:
mode:
Diffstat (limited to 'tslint.json')
-rw-r--r--tslint.json30
1 files changed, 29 insertions, 1 deletions
diff --git a/tslint.json b/tslint.json
index 0e9f36f33..31ceb95a0 100644
--- a/tslint.json
+++ b/tslint.json
@@ -27,7 +27,35 @@
"array-type": [true, "array-simple"],
"class-name": false,
"no-bitwise": false,
- "file-header": [true, "GNU General Public License"]
+ "file-header": [true, "GNU General Public License"],
+ "completed-docs": [true, {
+ "methods": {
+ "privacies": ["public"],
+ "locations": "all"
+ },
+ "properties": {
+ "privacies": ["public"],
+ "locations": ["all"]
+ },
+ "functions": {
+ "visibilities": ["exported"]
+ },
+ "interfaces": {
+ "visibilities": ["exported"]
+ },
+ "types": {
+ "visibilities": ["exported"]
+ },
+ "enums": {
+ "visibilities": ["exported"]
+ },
+ "classes": {
+ "visibilities": ["exported"]
+ },
+ "namespaces": {
+ "visibilities": ["exported"]
+ }
+ }]
},
"rulesDirectory": []
}