Skip to content
Snippets Groups Projects
Select Git revision
  • 9b88b6727d617865d467e1c723caeb7d897a925f
  • master default protected
  • csv_export
  • ndex
  • v1.1.18-rc2
  • v1.1.17
  • v1.1.16
  • v1.1.16-rc12
  • v1.1.16-rc11
  • v1.1.16-rc10
  • v1.1.16-rc9
  • v1.1.16-rc8
  • v1.1.16-rc7
  • v1.1.16-rc4
  • v1.1.16-rc3
  • v1.1.16-rc1
  • v1.1.6-rc1
  • v1.1.15
  • v1.1.15-rc7
  • v1.1.15-rc6
  • v1.1.15-rc3
  • v1.1.15-rc1
  • v1.1.14
  • v1.1.13
24 results

tslint.json

Blame
  • Code owners
    Assign users and groups as approvers for specific file changes. Learn more.
    tslint.json 3.22 KiB
    {
      "extends": "tslint:recommended",
      "rules": {
        "align": {
          "options": [
            "parameters",
            "statements"
          ]
        },
        "array-type": false,
        "arrow-parens": false,
        "arrow-return-shorthand": true,
        "deprecation": {
          "severity": "warning"
        },
        "component-class-suffix": true,
        "contextual-lifecycle": true,
        "curly": true,
        "directive-class-suffix": true,
        "directive-selector": [
          true,
          "attribute",
          "app",
          "camelCase"
        ],
        "component-selector": [
          true,
          "element",
          "app",
          "kebab-case"
        ],
        "eofline": true,
        "import-blacklist": [
          true,
          "rxjs/Rx"
        ],
        "import-spacing": true,
        "indent": {
          "options": [
            "spaces"
          ]
        },
        "interface-name": false,
        "max-classes-per-file": false,
        "max-line-length": [
          true,
          140
        ],
        "member-access": false,
        "member-ordering": [
          true,
          {
            "order": [
              "static-field",
              "instance-field",
              "static-method",
              "instance-method"
            ]
          }
        ],
        "no-consecutive-blank-lines": false,
        "no-console": true,
        "no-empty": false,
        "no-inferrable-types": [
          true,
          "ignore-params"
        ],
        "no-non-null-assertion": true,
        "no-redundant-jsdoc": true,
        "no-switch-case-fall-through": true,