This repository has been archived by the owner on Mar 25, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 889
Inherit defaultSeverity and apply it to preceding base configs #3530
Merged
Merged
Changes from 9 commits
Commits
Show all changes
14 commits
Select commit
Hold shift + click to select a range
251640b
Override defaultSeverity of extended configs (#2569).
M0ns1gn0r 97dbcf8
Fix "allow-boolean-or-undefined".
M0ns1gn0r 7dd26fc
Negate assertion messages.
M0ns1gn0r f9a9b93
Add test case "no inheritance of defaultSeverity ".
M0ns1gn0r 75587bd
Update defaultSeverity docs.
M0ns1gn0r aa11a2e
Deprecate defaultSeverity in IConfigurationFile.
M0ns1gn0r 58497de
Update defaultSeverity description in index.md.
M0ns1gn0r fa2310c
Merge branch 'master' into inherit-default-severity
ajafff 138b185
Inherit defaultSeverity and apply it to preceding base configs
ajafff 8d1740b
docs
ajafff e0855b6
Merge branch 'master' into inherit-default-severity
adidahiya ec21adf
Rename tslint-extends-default-severity-precendence.json to tslint-ext…
adidahiya 6a604e3
fix typo
adidahiya e33e625
disable-next-line no-dynamic-delete
adidahiya File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains 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
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
{ | ||
"defaultSeverity": "error", | ||
"rules": { | ||
"default-severity-error": { "severity": "default" } | ||
} | ||
} |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
{ | ||
"defaultSeverity": "off", | ||
"rules": { | ||
"default-severity-off": { "severity": "default" } | ||
} | ||
} |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
{ | ||
"rules": { | ||
"default-severity-unspecified": { "severity": "default" } | ||
} | ||
} |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
{ | ||
"defaultSeverity": "warning", | ||
"rules": { | ||
"default-severity-warning": { "severity": "default" } | ||
} | ||
} |
6 changes: 6 additions & 0 deletions
6
test/config/tslint-extends-default-severity-only-in-extended.json
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
{ | ||
"extends": "./tslint-extends-default-severity.json", | ||
"rules": { | ||
"default-severity-only-in-extended": { "severity": "default" } | ||
} | ||
} |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
{ | ||
"extends": [ | ||
"./tslint-default-severity-error.json", | ||
"./tslint-default-severity-warning.json", | ||
"./tslint-default-severity-off.json", | ||
"./tslint-default-severity-unspecified.json" | ||
] | ||
} |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
{ | ||
"extends": [ "./tslint-default-severity-unspecified.json", "./tslint-default-severity-error.json" ], | ||
"defaultSeverity": "warning", | ||
"rules": { | ||
"default-severity-warning": { "severity": "default" } | ||
} | ||
} |
This file contains 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
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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
nit: file name has a typo. "precedence". I'll fix this in a follow-up.