首页
学习
活动
专区
圈层
工具
发布
社区首页 >问答首页 >什么是Angular 2中tslint的成员排序以及实现的最佳实践

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

Stack Overflow用户
提问于 2016-11-30 00:34:43
回答 1查看 6.6K关注 0票数 1

我刚刚开始做Angular 2项目。在我的项目上运行tslint后,有许多关于成员排序的错误。我也试着从谷歌搜索中学习自己,不幸的是,我无法获得关于这个问题的任何有用的信息。我希望有人能在这方面给我提建议和建议。

我目前的tslint如下:

代码语言:javascript
复制
{
"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
}

}

EN

回答 1

Stack Overflow用户

发布于 2016-11-30 01:29:36

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

票数 2
EN
页面原文内容由Stack Overflow提供。腾讯云小微IT领域专用引擎提供翻译支持
原文链接:

https://stackoverflow.com/questions/40871004

复制
相关文章

相似问题

领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档