{
  "rulesDirectory": [
    "node_modules/codelyzer"
  ],
	"rules": {
		"class-name": true,
    "comment-format": [
      true,
      "check-space"
    ],
    "curly": true,
    "eofline": true,
    "indent": [true, "spaces"],
    "jsdoc-format": true,
    "member-ordering": [
      true,
      "variables-before-functions"
    ],
    "no-bitwise": true,
    "no-consecutive-blank-lines": true,
    "no-construct": true,
    "no-debugger": true,
    "no-duplicate-variable": true,
    "no-eval": true,
    "no-switch-case-fall-through": true,
    "no-trailing-whitespace": true,
    "no-unused-expression": true,
		"no-unused-variable": [
			true,
			"check-parameters"
		],
    "no-use-before-declare": true,
    "no-var-requires": true,
    "one-line": [
      true,
      "check-catch",
      "check-else"
    ],
    "quotemark": [
      true,
      "single"
    ],
    "radix": true,
    "semicolon": true,
    "triple-equals": [
      true,
      "allow-null-check"
    ],
    "typedef": [
      true,
      "parameter",
      "property-declaration",
      "member-variable-declaration"
    ],
    "typedef-whitespace": [
      true,
      {
        "call-signature": "nospace",
        "index-signature": "nospace",
        "parameter": "nospace",
        "property-delcaration": "nospace",
        "variable-delcaration": "nospace"
      }
    ],
    "variable-name": [
      true,
      "allow-leading-underscore",
      "check-format",
      "ban-keywords"
    ],
    "whitespace": [
      true,
      "check-branch",
      "check-decl",
      "check-operator",
      "check-separator",
      "check-module",
      "check-type"
    ],
    "directive-selector": [true, "element", "agm", "kebab-case"],
    "component-selector": [true, "element", "agm", "kebab-case"],
    "use-input-property-decorator": false,
    "use-output-property-decorator": false,
    "use-host-property-decorator": false,
    "no-attribute-parameter-decorator": true,
    "no-input-rename": true,
    "no-output-rename": true,
    "no-forward-ref": true,
    "use-life-cycle-interface": true,
    "use-pipe-transform-interface": true,
    "pipe-naming": [true, "camelCase", "agm"],
    "component-class-suffix": false,
    "directive-class-suffix": false,
    "import-destructuring-spacing": false,
    "templates-use-public": true,
    "no-access-missing-member": true,
    "invoke-injectable": true
	}
}
