From aa9b7cd22ae0a516b6f64f30d1e3591d27577247 Mon Sep 17 00:00:00 2001 From: Ian K Smith Date: Thu, 15 Aug 2019 12:54:32 -0600 Subject: [PATCH] Fix the linter for real this time --- tslint.json | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/tslint.json b/tslint.json index e23488f..25329ec 100644 --- a/tslint.json +++ b/tslint.json @@ -10,7 +10,11 @@ "trailingComma": "all", "bracketSpacing": true, "jsxBracketSameLine": true, - "variable-name": false, - }] + }], + "variable-name": { + "options": [ + "allow-leading-underscore" + ] + } } }