diff options
author | Valentin Popov <info@valentineus.link> | 2019-08-19 23:57:52 +0300 |
---|---|---|
committer | Valentin Popov <info@valentineus.link> | 2019-08-19 23:57:52 +0300 |
commit | a6b4bc15ebcfc3aa358fcfc95967da56381f0603 (patch) | |
tree | ced42ddcf0612c9caf9d183f4f44c7913f3f51fb /tslint.json | |
parent | 03dd1ac6af558886acae1296832459827ade54c3 (diff) | |
download | electron-hot-reload-a6b4bc15ebcfc3aa358fcfc95967da56381f0603.tar.xz electron-hot-reload-a6b4bc15ebcfc3aa358fcfc95967da56381f0603.zip |
Initial TypeScript
Signed-off-by: Valentin Popov <info@valentineus.link>
Diffstat (limited to 'tslint.json')
-rw-r--r-- | tslint.json | 28 |
1 files changed, 28 insertions, 0 deletions
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 |