From a6b4bc15ebcfc3aa358fcfc95967da56381f0603 Mon Sep 17 00:00:00 2001 From: Valentin Popov Date: Tue, 20 Aug 2019 00:57:52 +0400 Subject: Initial TypeScript Signed-off-by: Valentin Popov --- tslint.json | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 tslint.json (limited to 'tslint.json') diff --git a/tslint.json b/tslint.json new file mode 100644 index 0000000..7cf929f --- /dev/null +++ b/tslint.json @@ -0,0 +1,28 @@ +{ + "defaultSeverity": "error", + "extends": [ + "tslint-config-airbnb", + "tslint-consistent-codestyle", + "tslint-eslint-rules", + "tslint-microsoft-contrib/latest", + "tslint:all" + ], + "jsRules": { + "max-line-length": { + "options": [ + 120 + ] + } + }, + "rules": { + "max-line-length": { + "options": [ + 120 + ] + }, + "no-constant-condition": true + }, + "rulesDirectory": [ + "node_modules/tslint-eslint-rules/dist/rules" + ] +} \ No newline at end of file -- cgit v1.2.3