-
Notifications
You must be signed in to change notification settings - Fork 20
Update dependency tslint to v5 #19
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
Open
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@renovate
renovate
bot
force-pushed
the
renovate/tslint-5.x
branch
from
December 30, 2017 23:15
f78cf32
to
190986f
Compare
@renovate
renovate
bot
force-pushed
the
renovate/tslint-5.x
branch
2 times, most recently
from
January 10, 2018 23:09
ba393d4
to
92c11ac
Compare
@renovate
renovate
bot
force-pushed
the
renovate/tslint-5.x
branch
from
January 31, 2018 19:17
92c11ac
to
dbd5772
Compare
@renovate
renovate
bot
force-pushed
the
renovate/tslint-5.x
branch
26 times, most recently
from
February 20, 2018 02:31
0a07a66
to
160bc3a
Compare
@renovate
renovate
bot
force-pushed
the
renovate/tslint-5.x
branch
21 times, most recently
from
February 27, 2018 18:29
21af3c2
to
af25742
Compare
@renovate
renovate
bot
force-pushed
the
renovate/tslint-5.x
branch
from
March 8, 2018 07:32
af25742
to
6d0376f
Compare
@renovate
renovate
bot
force-pushed
the
renovate/tslint-5.x
branch
from
March 27, 2018 19:20
6d0376f
to
e88766a
Compare
@renovate
renovate
bot
force-pushed
the
renovate/tslint-5.x
branch
from
April 19, 2018 22:24
e88766a
to
058b241
Compare
@renovate
renovate
bot
force-pushed
the
renovate/tslint-5.x
branch
from
May 3, 2018 23:51
058b241
to
f9dc6ba
Compare
@renovate
renovate
bot
force-pushed
the
renovate/tslint-5.x
branch
2 times, most recently
from
May 31, 2018 19:30
78ac00f
to
1ba9714
Compare
@renovate
renovate
bot
force-pushed
the
renovate/tslint-5.x
branch
from
June 13, 2018 20:38
1ba9714
to
1367488
Compare
@renovate
renovate
bot
force-pushed
the
renovate/tslint-5.x
branch
from
July 17, 2018 02:40
1367488
to
43d2fe6
Compare
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.
This PR contains the following updates:
4.5.1
->5.11.0
Release Notes
palantir/tslint
v5.11.0
Compare Source
v5.10.0
Compare Source
v5.9.1
Compare Source
v5.9.0
Compare Source
v5.8.0
Compare Source
v5.7.0
Compare Source
v5.6.0
Compare Source
v5.5.0
Compare Source
Editor's note: This release features an important bugfix for overlapping fixes when using
--project
and--fix
(#2864).v5.4.3
Compare Source
v5.4.2
Compare Source
v5.4.1
Compare Source
v5.4.0
Compare Source
v5.3.2
Compare Source
not a directory
error (#2813)v5.3.0
Compare Source
v5.2.0
Compare Source
no-console
bans all console methods when no methods are specified (#2610)no-object-literal-type-assertion
(#2580)no-irregular-whitespace
(#2487)prefer-switch
(#2331)number-literal-format
(#2526)deprecation
(#2395)no-unnecessary-type-assertion
(#2519)interface-over-type-literal
(#2617)callable-types
(#2552)no-string-literal
(#2495)no-internal-module
(#2517)align
rule addedmembers
option, which checks alignment of methods and properties of classes, objects, interfaces, type literals and object destructuring (#2387)align
rule addedelements
option, which checks alignment of elements in array literals, array destructuring and tuple types (#2387)trailing-comma
adds more granular options to specify trailing commas for arrays, objects, functions, type literals, imports, and exports (#2538)ScopeAwareRuleWalker
andBlockScopeAwareRuleWalker
. (#2561)no-unused-expression
: allowvoid(0)
in addition tovoid 0
andvoid
in expression and statement position (#2645)align
: fix false positive for files with BOM (#2642)return-undefined
: Handle contextual types with ambiguous signatures; allowany
; and handle async functions. (#2576)semicolon
: don't mark semicolon as unnecessary when the next statement is on the same line (#2591)no-internal-module
: no more false positives for global augmentation (#2517)no-unnecessary-qualifier
: no longer breaks when walking a function that referencesarguments
(#2555)prefer-const
no longer shows warnings on ambient declarations (#2391)callable-types
: suggest correct fix for interfaces with type arguments (#2552)quotemark
: fix regression with jsx attributes (#2605)adjacent-overload-signatures
handles functions ending in semicolon (#2412)object-literal-key-quotes
: correctly stringify numbers when fixing (#2515)object-literal-key-quotes
: does no longer require quotes for property names containing digits (#2515)align
: Don't report 'statements are not aligned' for empty statements (#2653)class-name
now also checks class expressions (#2553)optionExamples
: Allow to use an options array directly instead of a string representation. (#2527)rulesDirectory
can now be resolved with Nodes resolve logic, if the directory contains anindex.js
(#2163) (#2358)no-unused-expression
: narrow error location for comma separated expressions and conditional expressions (#2645)no-string-literal
now handles escaped strings (#2495)no-unnecessary-callback-wrapper
: Allowx => x(x)
(#2524)no-var-keyword
: Allow global var declarations (#2513)Thanks to our contributors!
v5.1.0
Compare Source
no-invalid-template-strings
(#2332)no-sparse-arrays
(#2407)no-void-expression
: addsignore-arrow-function-shorthand
(#2445)tslint:all
configuration (#2417)no-reference-import
fromjsRules
torules
(#2441)no-unnecessary-callback-wrapper
: only check if callback is identifier, allow all other expressions (#2510)member-access
: Skip index signature, it can not have an access modifier (#2437)restrict-plus-operands
fixes regression where every assignment and comparison was checked (#2454)no-unnecessary-callback-wrapper
: allow async wrapper function (#2510)prefer-for-of
: No error ifdelete
is used (#2458)radix
: don't warn for missing radix on method calls (#2352)no-use-before-declare
: Handle symbol with empty declarations list. (#2436)strict-type-predicates
: Check for construct signatures inisFunction
. (#2479)strict-boolean-expressions
: When--strictNullChecks
is turned off,allow-null-union
andallow-undefined-union
turn off "always truthy" errors. (#2373)radix
: added check for global.parseInt and window.parseInt (#2352)arrow-return-shorthand
: Improve failure message when return expression is an object literal (#2466)Thanks to our contributors!
v5.0.0
Compare Source
Renovate configuration
📅 Schedule: At any time (no schedule defined).
🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.
♻️ Rebasing: Whenever PR becomes conflicted, or if you modify the PR title to begin with "
rebase!
".🔕 Ignore: Close this PR and you won't be reminded about this update again.
This PR has been generated by Renovate Bot. View repository job log here.