From 37942aefeb8986a97c0310a9fe3fe2d613519dab Mon Sep 17 00:00:00 2001
From: xufenglei <xufenglei>
Date: Tue, 31 Jul 2018 14:47:41 +0800
Subject: [PATCH] 风速单位调整
---
tslint.json | 33 +++++++++++++++------------------
1 files changed, 15 insertions(+), 18 deletions(-)
diff --git a/tslint.json b/tslint.json
index a2e30ef..84aee1d 100644
--- a/tslint.json
+++ b/tslint.json
@@ -10,16 +10,12 @@
true,
"check-space"
],
- "curly": true,
- "deprecation": {
- "severity": "warn"
- },
+ "curly": false,
"eofline": true,
- "forin": true,
+ "forin": false,
"import-blacklist": [
true,
- "rxjs",
- "rxjs/Rx"
+ "rxjs"
],
"import-spacing": true,
"indent": [
@@ -29,12 +25,12 @@
"interface-over-type-literal": true,
"label-position": true,
"max-line-length": [
- true,
+ false,
140
],
"member-access": false,
"member-ordering": [
- true,
+ false,
{
"order": [
"static-field",
@@ -45,7 +41,7 @@
}
],
"no-arg": true,
- "no-bitwise": true,
+ "no-bitwise": false,
"no-console": [
true,
"debug",
@@ -70,7 +66,7 @@
"no-string-literal": false,
"no-string-throw": true,
"no-switch-case-fall-through": true,
- "no-trailing-whitespace": true,
+ "no-trailing-whitespace": false,
"no-unnecessary-initializer": true,
"no-unused-expression": true,
"no-use-before-declare": true,
@@ -119,26 +115,27 @@
"check-type"
],
"directive-selector": [
- true,
+ false,
"attribute",
"app",
"camelCase"
],
"component-selector": [
- true,
+ false,
"element",
"app",
"kebab-case"
],
- "no-output-on-prefix": true,
"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,
+ "no-input-rename": false,
+ "no-output-rename": false,
"use-pipe-transform-interface": true,
"component-class-suffix": true,
- "directive-class-suffix": true
+ "directive-class-suffix": true,
+ "no-access-missing-member": true,
+ "templates-use-public": true,
+ "invoke-injectable": true
}
}
--
Gitblit v1.8.0