]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blobdiff - client/tslint.json
Optimize SQL query that fetch actor outbox
[github/Chocobozzz/PeerTube.git] / client / tslint.json
index 9653c965b79ca32e7ff53603e7d783f46f724ba2..c1ca4336ef4af00952d976c08633cf9cb2d5a58b 100644 (file)
@@ -1,73 +1,39 @@
 {
+  "extends": "tslint-config-standard",
   "rulesDirectory": ["./node_modules/codelyzer"],
   "rules": {
-    "class-name": true,
-    "curly": false,
+    "no-inferrable-types": true,
     "eofline": true,
-    "indent": ["spaces"],
     "max-line-length": [true, 140],
+    "no-floating-promises": false,
+    "no-unused-variable": false, // Bug, wait TypeScript 2.4
     "member-ordering": [true,
       "public-before-private",
       "static-before-instance",
       "variables-before-functions"
     ],
-    "no-arg": true,
-    "no-construct": true,
-    "no-duplicate-key": true,
-    "no-duplicate-variable": true,
-    "no-empty": true,
-    "no-eval": true,
-    "no-trailing-whitespace": true,
-    "no-unused-expression": true,
-    "no-unused-variable": true,
-    "no-unreachable": true,
-    "no-use-before-declare": true,
-    "one-line": [true,
-      "check-open-brace",
-      "check-catch",
-      "check-else",
-      "check-whitespace"
-    ],
-    "quotemark": [true, "single"],
-    "semicolon": true,
-    "trailing-comma": true,
-    "triple-equals": true,
-    "variable-name": false,
 
-    "directive-selector-name": [true, "camelCase"],
-    "component-selector-name": [true, "kebab-case"],
-    "directive-selector-type": [true, "attribute"],
-    "component-selector-type": [true, "element"],
-    "directive-selector-prefix": [true, "my"],
-    "component-selector-prefix": [true, "my"],
+    "angular-whitespace": [true, "check-interpolation", "check-semicolon"],
+    "banana-in-box": true,
+    "templates-no-negated-async": true,
+    "directive-selector": [true, "attribute", "my", "camelCase"],
+    "component-selector": [true, "element", "my", "kebab-case"],
     "use-input-property-decorator": true,
     "use-output-property-decorator": true,
     "use-host-property-decorator": true,
+    "use-view-encapsulation": true,
     "no-attribute-parameter-decorator": true,
     "no-input-rename": true,
     "no-output-rename": true,
-    "no-forward-ref" :true,
+    "no-output-on-prefix": true,
+    "no-forward-ref": false,
     "use-life-cycle-interface": true,
+    "contextual-life-cycle": true,
+    "trackBy-function": false,
     "use-pipe-transform-interface": true,
     "pipe-naming": [true, "camelCase", "my"],
     "component-class-suffix": true,
     "directive-class-suffix": true,
-
-    "typedef-whitespace": [ true,
-      {
-        "call-signature": "nospace",
-        "index-signature": "nospace",
-        "parameter": "nospace",
-        "property-declaration": "nospace",
-        "variable-declaration": "nospace"
-      }
-    ],
-    "whitespace": [ true,
-      "check-branch",
-      "check-decl",
-      "check-operator",
-      "check-separator",
-      "check-type"
-    ]
+    "pipe-impure": true
   }
 }