khalyomede/gridsome-plugin-htaccess

View on GitHub
tslint.json

Summary

Maintainability
Test Coverage
{
    "rules": {
        "member-access": true,
        "no-any": true,
        "no-empty-interface": true,
        "no-import-side-effect": true,
        "no-non-null-assertion": true,
        "no-parameter-reassignment": true,
        "no-reference": true,
        "no-unnecessary-type-assertion": true,
        "no-var-requires": true,
        "prefer-for-of": true,
        "promise-function-async": true,
        "typedef": [true, "call-signature"],
        "unified-signatures": true,
        "await-promise": true,
        "ban-comma-operator": true,
        "curly": true,
        "function-constructor": true,
        "no-async-without-await": true,
        "no-conditional-assignment": true,
        "no-console": [true, "log"],
        "no-construct": true,
        "no-duplicate-super": true,
        "no-duplicate-switch-case": true,
        "no-duplicate-variable": [true, "check-parameters"],
        "no-empty": true,
        "no-eval": true,
        "no-floating-promises": true,
        "no-for-in-array": true,
        "no-implicit-dependencies": true,
        "no-inferred-empty-object-type": true,
        "no-invalid-template-strings": true,
        "no-invalid-this": true,
        "no-promise-as-boolean": true,
        "no-return-await": true,
        "no-shadowed-variable": true,
        "no-sparse-arrays": true,
        "no-string-literal": true,
        "no-string-throw": true,
        "no-switch-case-fall-through": true,
        "no-tautology-expression": true,
        "no-this-assignment": true,
        "no-unbound-method": true,
        "no-unnecessary-class": true,
        "no-unsafe-any": true,
        "no-unsafe-finally": true,
        "no-unused-expression": true,
        "no-var-keyword": true,
        "no-void-expression": true,
        "prefer-conditional-expression": true,
        "prefer-object-spread": true,
        "restrict-plus-operands": true,
        "static-this": true,
        "strict-boolean-expressions": true,
        "strict-comparisons": true,
        "strict-string-expressions": true,
        "strict-type-predicates": true,
        "switch-default": true,
        "triple-equals": true,
        "unnecessary-constructor": true,
        "use-isnan": true,
        "deprecation": true,
        "invalid-void": true,
        "max-classes-per-file": [true, 1],
        "no-duplicate-imports": [true, { "allow-namespace-imports": true }],
        "no-require-imports": true,
        "object-literal-sort-keys": true,
        "prefer-const": true,
        "prefer-readonly": true,
        "array-type": [true, "generic"],
        "arrow-return-shorthand": true,
        "binary-expression-operand-order": true,
        "class-name": true,
        "encoding": true,
        "increment-decrement": true,
        "interface-name": [true, "always-prefix"],
        "interface-over-type-literal": true,
        "no-parameter-properties": true,
        "no-redundant-jsdoc": true,
        "no-reference-import": true,
        "no-unnecessary-callback-wrapper": true,
        "object-literal-key-quotes": [true, "as-needed"],
        "object-literal-shorthand": true,
        "one-variable-per-declaration": true,
        "ordered-imports": true,
        "prefer-function-over-method": true,
        "prefer-method-signature": true,
        "prefer-switch": true,
        "prefer-template": true,
        "space-within-parens": false,
        "switch-final-break": true,
        "unnecessary-else": true,
        "variable-name": {
            "options": [
                "ban-keywords",
                "check-format",
                "allow-leading-underscore",
                "allow-pascal-case"
            ]
        },
        "arrow-parens": false,
        "eofline": true,
        "import-spacing": true,
        "indent": [true, "tabs", 4],
        "no-consecutive-blank-lines": true,
        "no-irregular-whitespace": true,
        "no-trailing-whitespace": true,
        "quotemark": [true, "double"],
        "semicolon": [true, "always"],
        "trailing-comma": [
            true,
            {
                "multiline": {
                    "objects": "always",
                    "arrays": "always",
                    "functions": "never",
                    "typeLiterals": "ignore"
                },
                "esSpecCompliant": true
            }
        ]
    }
}