aboutsummaryrefslogtreecommitdiff
path: root/tslint.json
diff options
context:
space:
mode:
authorValentin Popov <info@valentineus.link>2019-08-22 00:12:17 +0300
committerGitHub <noreply@github.com>2019-08-22 00:12:17 +0300
commit6d5cb2611be73e4c3b0787ac00fe28e4c243417e (patch)
tree5b65999c40a916d0e4bb5f878b30cee236045e94 /tslint.json
parent03dd1ac6af558886acae1296832459827ade54c3 (diff)
parent8147b911dec725f50fb79e22dd149e13eca02d81 (diff)
downloadelectron-hot-reload-6d5cb2611be73e4c3b0787ac00fe28e4c243417e.tar.xz
electron-hot-reload-6d5cb2611be73e4c3b0787ac00fe28e4c243417e.zip
Merge pull request #1 from valentineus/develop
Develop
Diffstat (limited to 'tslint.json')
-rw-r--r--tslint.json33
1 files changed, 33 insertions, 0 deletions
diff --git a/tslint.json b/tslint.json
new file mode 100644
index 0000000..35769ad
--- /dev/null
+++ b/tslint.json
@@ -0,0 +1,33 @@
+{
+ "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
+ ]
+ },
+ "mocha-avoid-only": false,
+ "mocha-no-side-effect-code": false,
+ "mocha-unneeded-done": false,
+ "newline-per-chained-call": false,
+ "no-constant-condition": true,
+ "no-relative-imports": false
+ },
+ "rulesDirectory": [
+ "node_modules/tslint-eslint-rules/dist/rules"
+ ]
+}