updated tslint and ignored some files

This commit is contained in:
Dolan
2017-03-07 23:05:09 +00:00
parent f5de5fef4d
commit bca478bb81
2 changed files with 34 additions and 33 deletions

View File

@ -1,3 +1,4 @@
/* tslint:disable */
function createLsdException(name, uiPriority, qFormat?, semiHidden?, unhideWhenUsed?) { function createLsdException(name, uiPriority, qFormat?, semiHidden?, unhideWhenUsed?) {
'use strict'; 'use strict';

View File

@ -1,35 +1,35 @@
{ {
"extends": "tslint:latest", "extends": "tslint:latest",
"rules": { "rules": {
"curly": true, "curly": true,
"one-variable-per-declaration": [ "one-variable-per-declaration": [
true true
], ],
"no-any": true, "no-any": true,
"no-consecutive-blank-lines": [ "no-consecutive-blank-lines": [
true true
], ],
"no-require-imports": true, "no-require-imports": true,
"member-access": [ "member-access": [
true true
], ],
"indent": [ "indent": [
true, true,
"spaces" "spaces"
], ],
"object-literal-sort-keys": false, "object-literal-sort-keys": false,
"object-literal-shorthand": false, "object-literal-shorthand": false,
"typedef": [ "typedef": [
true, true,
"call-signature", "call-signature",
"parameter", "parameter",
"property-declaration" "property-declaration"
], ],
"max-line-length": [ "max-line-length": [
false false
], ],
"max-classes-per-file": [ "max-classes-per-file": [
false false
] ]
} }
} }