angular - Angular 2 中 tslint 的成员排序是什么以及实现的最佳实践

标签 angular typescript tslint

我刚刚开始从事 Angular 2 项目。在我的项目上运行 tslint 后,出现了许多与成员排序有关的错误。我也尝试通过谷歌搜索来研究自己,不幸的是,我无法获得有关此问题的任何有用信息。我希望有人能就此提出建议和建议。

我当前的 tslint 如下:

{
"rulesDirectory": [
    "node_modules/codelyzer"
],
"rules": {
    "class-name": true,
    "comment-format": [
        true,
        "check-space"
    ],
    "curly": true,
    "eofline": true,
    "forin": true,
    "indent": [
        true,
        "spaces"
    ],
    "label-position": true,
    "label-undefined": true,
    "max-line-length": [
        true,
        140
    ],
    "member-access": false,
    "member-ordering": [
        true,
        "public-before-private",
        "static-before-instance",
        "variables-before-functions"
    ],
    "no-arg": true,
    "no-bitwise": true,
    "no-console": [
        true,
        "debug",
        "info",
        "time",
        "timeEnd",
        "trace"
    ],
    "no-construct": true,
    "no-debugger": true,
    "no-duplicate-key": true,
    "no-duplicate-variable": true,
    "no-empty": false,
    "no-eval": true,
    "no-inferrable-types": true,
    "no-shadowed-variable": true,
    "no-string-literal": false,
    "no-switch-case-fall-through": true,
    "no-trailing-whitespace": true,
    "no-unused-expression": true,
    "no-unused-variable": true,
    "no-unreachable": true,
    "no-use-before-declare": true,
    "no-var-keyword": true,
    "object-literal-sort-keys": false,
    "one-line": [
        true,
        "check-open-brace",
        "check-catch",
        "check-else",
        "check-whitespace"
    ],
    "quotemark": [
        true,
        "single"
    ],
    "radix": true,
    "semicolon": [
        "always"
    ],
    "triple-equals": [
        true,
        "allow-null-check"
    ],
    "typedef-whitespace": [
        true,
        {
            "call-signature": "nospace",
            "index-signature": "nospace",
            "parameter": "nospace",
            "property-declaration": "nospace",
            "variable-declaration": "nospace"
        }
    ],
    "variable-name": false,
    "whitespace": [
        true,
        "check-branch",
        "check-decl",
        "check-operator",
        "check-separator",
        "check-type"
    ],
    "directive-selector-prefix": [
        true,
        "ihc"
    ],
    "component-selector-prefix": [
        true,
        "ihc"
    ],
    "directive-selector-name": [
        true,
        "camelCase"
    ],
    "component-selector-name": [
        true,
        "kebab-case"
    ],
    "directive-selector-type": [
        true,
        "attribute"
    ],
    "component-selector-type": [
        true,
        "element"
    ],
    "use-input-property-decorator": true,
    "use-output-property-decorator": true,
    "use-host-property-decorator": true,
    "no-input-rename": true,
    "no-output-rename": true,
    "use-life-cycle-interface": true,
    "use-pipe-transform-interface": true,
    "component-class-suffix": true,
    "directive-class-suffix": true
}

}

最佳答案

您应该尝试遵循有关成员序列的官方 Angular 样式指南: https://angular.io/guide/styleguide#member-sequence

关于angular - Angular 2 中 tslint 的成员排序是什么以及实现的最佳实践,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40871004/

相关文章:

angular - 如何抑制来自 npm 链接包的 tslint 警告?

angular - Angular Material 排版的不透明度

javascript - 从具有 Angular 2 http 调用的函数返回 Promise,该调用返回 Observable

typescript - Vue 增强类型 - XYZ 在类型上不存在

TypeScript 短绒警告 : no-unused-variable is deprecated; but I'm not using this config

typescript - Vue Component Props 上的数组类型破坏了 Linter

Angular 6 ResponseContentType

node.js - 错误 : EACCES: permission denied, 访问 '/usr/local/lib/node_modules/ANGULAR

javascript - typescript 打字封装

javascript - TypeScript/JavaScript Date.parse 在应该返回 NaN 时没有返回 NaN