dkuida/moleculer-db-adapter-typeorm

View on GitHub
tslint.json

Summary

Maintainability
Test Coverage
{
  "extends": [
    "tslint-eslint-rules",
    "tslint:latest",
    "tslint:recommended"
  ],
  "rules": {
    "quotemark": [
      true,
      "single",
      "jsx-single"
    ],
    "indent": true,
    "interface-name": false,
    "variable-name": [
      true,
      "allow-leading-underscore"
    ],
    "one-line": false,
    "trailing-comma": [
      false
    ],
    "ordered-imports": false,
    "no-angle-bracket-type-assertion": false,
    "no-implicit-dependencies": [
      true,
      "dev"
    ],
    "space-in-parens": [
      true,
      "never"
    ],
    "linebreak-style": [
      true,
      "LF"
    ],
    "arrow-parens": [
      true
    ],
    "cyclomatic-complexity": [
      true,
      20
    ],
    "whitespace": [
      true,
      "check-typecast",
      "check-operator",
      "check-module",
      "check-type",
      "check-decl",
      "check-type-operator"
    ],
    "no-console": true,
    "prefer-const": true
  }
}