{
  "extends":        [
    "tslint:recommended",
    "tslint-sonarts"
  ],
  "jsRules":        {},
  "rules":          {
    "quotemark": [true, "single", "avoid-escape", "avoid-template"],
    "trailing-comma": [
      true,
      {
        "multiline": {
          "objects": "always",
          "arrays": "always",
          "functions": "never",
          "typeLiterals": "ignore"
        }
      }
    ],
    "no-commented-code": false,
    "no-duplicate-string": false,
    "cognitive-complexity": [true, 20]
  }
}