@firestitch/address
Version:
@firestitch/address
106 lines (102 loc) • 2.49 kB
JSON
{
"rulesDirectory": ["../../node_modules/codelyzer"],
"rules": {
"array-type": [
true,
"array"
],
"object-literal-key-quotes": [
true,
"as-needed"
],
"max-line-length": [
true,
120
],
"no-inferrable-types": true,
"class-name": true,
"import-spacing": true,
"comment-format": [
true,
"check-space"
],
"indent": [
true,
"spaces"
],
"eofline": true,
"no-duplicate-variable": true,
"no-eval": true,
"no-arg": true,
"no-internal-module": true,
"no-trailing-whitespace": true,
"no-bitwise": false,
"no-shadowed-variable": true,
"no-unused-expression": true,
"no-string-literal": true,
"no-use-before-declare": true,
"prefer-const": true,
"object-literal-sort-keys": false,
"ordered-imports": false,
"one-line": [
true,
"check-catch",
"check-open-brace",
"check-whitespace"
],
"quotemark": [
true,
"single",
"avoid-escape"
],
"typedef-whitespace": [
true,
{
"call-signature": "nospace",
"index-signature": "nospace",
"parameter": "nospace",
"property-declaration": "nospace",
"variable-declaration": "nospace"
}
],
"curly": [
true,
"ignore-same-line"
],
"forin": true,
"no-conditional-assignment": true,
"no-duplicate-super": true,
"max-classes-per-file": [true, 1],
"whitespace": [
true,
"check-branch",
"check-decl",
"check-operator",
"check-separator",
"check-type"
],
"variable-name": [
true,
"allow-leading-underscore",
"allow-pascal-case",
"ban-keywords",
"check-format"
],
// Codelyzer
"directive-selector": [true, "attribute", ["fs"], "camelCase"],
"component-selector": [true, ["element", "attribute"], ["fs"], "kebab-case"],
"angular-whitespace": [true, "check-semicolon"],
"use-input-property-decorator": true,
"use-output-property-decorator": true,
"use-host-property-decorator": true,
"no-attribute-parameter-decorator": true,
"no-input-rename": false,
"no-output-on-prefix": true,
"no-output-rename": false,
"no-forward-ref": true,
"use-life-cycle-interface": true,
"use-pipe-transform-interface": true,
"component-class-suffix": [true, "Component"],
"directive-class-suffix": [true, "Directive"]
}
}