iotc-explorer/tslint.json

109 строки
2.9 KiB
JSON
Исходник Обычный вид История

{
"rulesDirectory": ["tslint-consistent-codestyle"],
"rules": {
"align": [
true,
"parameters"
],
"array-type": [
true,
"array"
],
"class-name": true,
"curly": true,
"comment-format": [
true,
"check-space"
],
"file-header": [
true,
"^!\\s*\\* Copyright \\(c\\) Microsoft Corporation\\. All rights reserved\\.\n \\* Licensed under the MIT License\\.\\s*$",
"Copyright (c) Microsoft Corporation. All rights reserved.\nLicensed under the MIT License."
],
"import-spacing": true,
"indent": [
true,
"spaces"
],
"max-line-length": [true, 120],
"new-parens": true,
"no-construct": true,
"no-duplicate-variable": true,
"no-eval": true,
"no-internal-module": true,
"no-invalid-this": true,
"no-misused-new": true,
"no-trailing-whitespace": true,
"no-unused-expression": true,
"no-var-keyword": true,
"object-literal-key-quotes": [
true,
"as-needed"
],
"one-line": [
true,
"check-catch",
"check-else",
"check-finally",
"check-open-brace",
"check-whitespace"
],
"only-arrow-functions": [
true,
"allow-declarations"
],
"ordered-imports": [
true,
{
"grouped-imports": true
}
],
"prefer-const": true,
"prefer-for-of": true,
"quotemark": [
true,
"single"
],
"semicolon": [
true,
"always"
],
"space-before-function-paren": [
true,
{
"anonymous": "always",
"named": "never",
"asyncArrow": "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": [
true,
"ban-keywords"
],
"whitespace": [
true,
"check-branch",
"check-decl",
"check-module",
"check-operator",
"check-separator",
"check-type",
"check-typecast",
"check-preblock"
]
}
}