Skip to content

Commit 3873d08

Browse files
chore(tslint): update tslint
1 parent 43d152a commit 3873d08

File tree

3 files changed

+31
-35
lines changed

3 files changed

+31
-35
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@
9494
"shelljs": "^0.7.0",
9595
"shx": "^0.1.4",
9696
"systemjs": "^0.18.4",
97-
"tslint": "=2.5.0",
97+
"tslint": "^5.4.3",
9898
"typedoc": "~0.5.0",
9999
"typedoc-plugin-external-module-name": "^1.0.2",
100100
"typedoc-plugin-internal-external": "^1.0.0",

tslint.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
{
1+
{
22
"rules": {
33
"align": [true, "parameters", "statements"],
44
"ban": false,
@@ -32,7 +32,6 @@
3232
"no-require-imports": true,
3333
"no-string-literal": false,
3434
"no-switch-case-fall-through": true,
35-
"no-trailing-comma": true,
3635
"no-trailing-whitespace": false,
3736
"no-unreachable": true,
3837
"no-unused-expression": [true, "allow-fast-null-checks"],
@@ -45,6 +44,7 @@
4544
"radix": true,
4645
"semicolon": true,
4746
"switch-default": true,
47+
"trailing-comma": [true, {"multiline": "always", "singleline": "never"}],
4848
"triple-equals": [true, "allow-null-check"],
4949
"typedef": [false, "call-signature", "parameter", "property-declaration", "variable-declaration", "member-variable-declaration" ],
5050
"typedef-whitespace": [true, {

yarn.lock

Lines changed: 28 additions & 32 deletions
Original file line numberDiff line numberDiff line change
@@ -530,7 +530,7 @@ [email protected]:
530530
dependencies:
531531
hoek "2.x.x"
532532

533-
brace-expansion@^1.0.0:
533+
brace-expansion@^1.0.0, brace-expansion@^1.1.7:
534534
version "1.1.7"
535535
resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.7.tgz#3effc3c50e000531fb720eaff80f0ae8ef23cf59"
536536
dependencies:
@@ -1193,6 +1193,10 @@ di@^0.0.1:
11931193
version "0.0.1"
11941194
resolved "https://registry.yarnpkg.com/di/-/di-0.0.1.tgz#806649326ceaa7caa3306d75d985ea2748ba913c"
11951195

1196+
diff@^3.2.0:
1197+
version "3.2.0"
1198+
resolved "https://registry.yarnpkg.com/diff/-/diff-3.2.0.tgz#c9ce393a4b7cbd0b058a725c93df299027868ff9"
1199+
11961200
diffie-hellman@^5.0.0:
11971201
version "5.0.2"
11981202
resolved "https://registry.yarnpkg.com/diffie-hellman/-/diffie-hellman-5.0.2.tgz#b5835739270cfe26acf632099fded2a07f209e5e"
@@ -1558,12 +1562,6 @@ find-up@^1.0.0:
15581562
path-exists "^2.0.0"
15591563
pinkie-promise "^2.0.0"
15601564

1561-
findup-sync@~0.2.1:
1562-
version "0.2.1"
1563-
resolved "https://registry.yarnpkg.com/findup-sync/-/findup-sync-0.2.1.tgz#e0a90a450075c49466ee513732057514b81e878c"
1564-
dependencies:
1565-
glob "~4.3.0"
1566-
15671565
for-in@^1.0.1:
15681566
version "1.0.2"
15691567
resolved "https://registry.yarnpkg.com/for-in/-/for-in-1.0.2.tgz#81068d295a8142ec0ac726c6e2200c30fb6d5e80"
@@ -1752,15 +1750,6 @@ glob@^7.0.0, glob@^7.0.5, glob@^7.1.1:
17521750
once "^1.3.0"
17531751
path-is-absolute "^1.0.0"
17541752

1755-
glob@~4.3.0:
1756-
version "4.3.5"
1757-
resolved "https://registry.yarnpkg.com/glob/-/glob-4.3.5.tgz#80fbb08ca540f238acce5d11d1e9bc41e75173d3"
1758-
dependencies:
1759-
inflight "^1.0.4"
1760-
inherits "2"
1761-
minimatch "^2.0.1"
1762-
once "^1.3.0"
1763-
17641753
globals@^9.0.0:
17651754
version "9.17.0"
17661755
resolved "https://registry.yarnpkg.com/globals/-/globals-9.17.0.tgz#0c0ca696d9b9bb694d2e5470bd37777caad50286"
@@ -2559,11 +2548,11 @@ minimalistic-crypto-utils@^1.0.0, minimalistic-crypto-utils@^1.0.1:
25592548
dependencies:
25602549
brace-expansion "^1.0.0"
25612550

2562-
minimatch@^2.0.1:
2563-
version "2.0.10"
2564-
resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-2.0.10.tgz#8d087c39c6b38c001b97fca7ce6d0e1e80afbac7"
2551+
minimatch@^3.0.4:
2552+
version "3.0.4"
2553+
resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.0.4.tgz#5166e286457f03306064be5497e8dbb0c3d32083"
25652554
dependencies:
2566-
brace-expansion "^1.0.0"
2555+
brace-expansion "^1.1.7"
25672556

25682557
[email protected], minimist@~0.0.1:
25692558
version "0.0.8"
@@ -2746,7 +2735,7 @@ [email protected]:
27462735
object-assign "^4.0.1"
27472736
pinkie-promise "^2.0.0"
27482737

2749-
optimist@^0.6.1, optimist@~0.6.0:
2738+
optimist@^0.6.1:
27502739
version "0.6.1"
27512740
resolved "https://registry.yarnpkg.com/optimist/-/optimist-0.6.1.tgz#da3ea74686fa21a19a111c326e90eb15a0196686"
27522741
dependencies:
@@ -3273,7 +3262,7 @@ [email protected], [email protected]:
32733262
version "1.1.7"
32743263
resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.1.7.tgz#203114d82ad2c5ed9e8e0411b3932875e889e97b"
32753264

3276-
resolve@^1.1.6, resolve@^1.1.7:
3265+
resolve@^1.1.6, resolve@^1.1.7, resolve@^1.3.2:
32773266
version "1.3.3"
32783267
resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.3.3.tgz#655907c3469a8680dc2de3a275a8fdd69691f0e5"
32793268
dependencies:
@@ -3860,13 +3849,24 @@ tslib@^1.7.1:
38603849
version "1.7.1"
38613850
resolved "https://registry.yarnpkg.com/tslib/-/tslib-1.7.1.tgz#bc8004164691923a79fe8378bbeb3da2017538ec"
38623851

3863-
tslint@=2.5.0:
3864-
version "2.5.0"
3865-
resolved "https://registry.yarnpkg.com/tslint/-/tslint-2.5.0.tgz#9c7ba48c5da7aba97d8b761a7bd722da7e140f3b"
3852+
tslint@^5.4.3:
3853+
version "5.4.3"
3854+
resolved "https://registry.yarnpkg.com/tslint/-/tslint-5.4.3.tgz#761c8402b80e347b7733a04390a757b253580467"
38663855
dependencies:
3867-
findup-sync "~0.2.1"
3868-
optimist "~0.6.0"
3869-
underscore.string "~3.1.1"
3856+
babel-code-frame "^6.22.0"
3857+
colors "^1.1.2"
3858+
commander "^2.9.0"
3859+
diff "^3.2.0"
3860+
glob "^7.1.1"
3861+
minimatch "^3.0.4"
3862+
resolve "^1.3.2"
3863+
semver "^5.3.0"
3864+
tslib "^1.7.1"
3865+
tsutils "^2.3.0"
3866+
3867+
tsutils@^2.3.0:
3868+
version "2.4.0"
3869+
resolved "https://registry.yarnpkg.com/tsutils/-/tsutils-2.4.0.tgz#ad4ce6dba0e5a3edbddf8626b7ca040782189fea"
38703870

38713871
38723872
version "0.0.0"
@@ -3974,10 +3974,6 @@ [email protected]:
39743974
version "1.0.2"
39753975
resolved "https://registry.yarnpkg.com/ultron/-/ultron-1.0.2.tgz#ace116ab557cd197386a4e88f4685378c8b2e4fa"
39763976

3977-
underscore.string@~3.1.1:
3978-
version "3.1.1"
3979-
resolved "https://registry.yarnpkg.com/underscore.string/-/underscore.string-3.1.1.tgz#0cdd6bcad0c046fd7663d305d8a785b5da10f335"
3980-
39813977
[email protected], unpipe@~1.0.0:
39823978
version "1.0.0"
39833979
resolved "https://registry.yarnpkg.com/unpipe/-/unpipe-1.0.0.tgz#b2bf4ee8514aae6165b4817829d21b2ef49904ec"

0 commit comments

Comments
 (0)