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.
This PR contains the following updates:
2.1.1
->6.0.2
~1.0.0-beta.3
->~6.0.0
Release Notes
mgechev/codelyzer (codelyzer)
v6.0.1
v6.0.0
Bug Fixes
v5.2.2
Compare Source
v5.2.1
Compare Source
v5.2.0
Compare Source
Bug Fixes
Features
5.1.2 (2019-09-26)
Bug Fixes
5.1.1 (2019-09-19)
Bug Fixes
v5.1.2
Compare Source
v5.1.1
Compare Source
v5.1.0
Compare Source
Bug Fixes
Features
5.0.1 (2019-04-25)
Bug Fixes
v5.0.1
Compare Source
Bug Fixes
v5.0.0
Compare Source
BREAKING CHANGES
Angular CLI will automatically migrate your projects to reflect the latest config.
contextual-life-cycle
is renamed tocontextual-lifecycle
no-conflicting-life-cycle-hooks
is renamed tono-conflicting-lifecycle
no-life-cycle-call
is renamed tono-lifecycle-call
use-life-cycle-interface
is renamed touse-lifecycle-interface
decorator-not-allowed
is renamed tocontextual-decorator
enforce-component-selector
is renamed touse-component-selector
no-output-named-after-standard-event
is renamed tono-output-native
use-host-property-decorator
is renamed tono-host-metadata-property
use-input-property-decorator
is renamed tono-inputs-metadata-property
use-output-property-decorator
is renamed tono-outputs-metadata-property
no-queries-parameter
is renamed tono-queries-metadata-property
pipe-impure
is renamed tono-pipe-impure
use-view-encapsulation
is renamed touse-component-view-encapsulation
i18n
is renamed totemplate-i18n
banana-in-box
is renamed totemplate-banana-in-box
no-template-call-expression
is renamed totemplate-no-call-expression
templates-no-negated-async
is renamed totemplate-no-negated-async
trackBy-function
is renamed totemplate-use-track-by-function
no-attribute-parameter-decorator
is renamed tono-attribute-decorator
max-inline-declarations
is renamed tocomponent-max-inline-declarations
Bug Fixes
Features
v4.5.0
Compare Source
Bug Fixes
Features
4.4.4 (2018-08-13)
Bug Fixes
4.4.3 (2018-08-06)
Bug Fixes
4.4.2 (2018-06-25)
Bug Fixes
4.4.1 (2018-06-23)
Bug Fixes
v4.4.4
Compare Source
Bug Fixes
v4.4.3
Compare Source
Bug Fixes
v4.4.2
Compare Source
Bug Fixes
v4.4.1
Compare Source
Bug Fixes
v4.4.0
Compare Source
Bug Fixes
Features
Credits to the codelyzer's maintainers and contributors.
v4.3.0
Compare Source
New Rules
max-inline-declarations
which limits the size of inline templates and/or styles. Credits to NagRock #536 174ed46.prefer-output-readonly
requires the@Output
s of a component to bereadonly
. Credits to rafaelss95 #515 3d652d1.no-conflicting-life-cycle-hooks
prevents to implement OnChanges and DoCheck on the same class. Credits to rafaelss95 #560 e521115.enforce-component-selector
Component Selector Required #551 b9c899b. Credits to wKoza.no-life-cycle-call
disallow explicit calls to lifecycle hooks. Credits to rafaelss95 #427 3e10013Bug Fixes
@angular/platform-browser-dynamic
#525 671e954.contextual-life-cycle
too aggressively scoped #545 dcb4b3e.no-output-named-after-standard-event
Does Not Check Output Rename #537 96d9292.A lot of credits go to rafaelss95, wKoza. The rest of the amazing people who work on codelyzer, can be found here.
v4.2.1
Compare Source
Bug Fixes
peerDependencies
range.v4.2.0
Compare Source
New Rules
template-cyclomatic-complexity
which limits the estimated Cyclomatic complexity in your templates. Credits to wKoza.template-conditional-complexity
which limits the complexity of boolean expressions inside of your templates. Credits to wKoza.Features
template-cyclomatic-complexity
#514 3221330template-conditional-complexity
) #508 bb86295Bug Fixes
v4.1.0
Compare Source
Features
Bug Fixes
Thanks to @gbilodeau for
NoOutputNamedAfterStandardEventRule
and wKoza for the code reviews!v4.0.2
Compare Source
Bug Fixes
angular-whitespace
related tocheck-semicolon
andcheck-interpolation
#469 2ef7438Thanks to @sagittarius-rev for the bug fixes!
v4.0.1
Compare Source
Bug Fixes
noOutputOnPrefixRule
and rename it tono-output-on-prefix
. You can now enable it with:noOutputOnPrefixRule
.v4.0.0
Compare Source
Features
Enable the new rule by adding the following line in your
tslint.json
config file:Thanks to @eromano for the rule implementation!
Breaking Changes
templates-use-public
,no-access-missing-member
,invoke-injectable
andtemplate-to-ng-template
no longer exist. Remove them from yourtslint.json
configuration.v3.2.2
Compare Source
Features
@angular/compiler@4.4.1
#416 d67f88eBug Fixes
v3.2.1
Compare Source
Features
@angular/compiler@4.4.1
#416 d67f88eBug Fixes
v3.2.0
Compare Source
Features
Bug Fixes
@Pipe
decorator where we use a shorthand syntax for passing properties #399 8e3fafbcheck-pipe
option ofangular-whitespace
#365 bef790bThanks to @wKoza for working on the introduced features, bug fixes and code reviews!
v3.1.2
Compare Source
Features
Thanks to @wKoza for code reviews and implementation of
"check-semicolon"
.angular-whitespace: [true, "check-semicolon", "check-interpolation", "check-pipe"]
- Checks if there's whitespace after semicolon, around an expression surrounded by interpolation characters, and after a pipe symbol.Bug Fixes
v3.1.1
Compare Source
Bug Fixes
v3.1.0
Compare Source
New rules
angular-whitespace: [true, "check-interpolation", "check-pipe"]
- Checks if there's whitespace around an expression surrounded by interpolation characters, and after a pipe symbol.banana-in-box: true
- Checks for proper banana in a box syntax -[(ngModel)]
instead of([ngModel])
.templates-no-negated-async: true
- Enforces(foo | async) === false
, rather than!(foo | async)
, because of the initial falsy value emitted.use-view-encapsulation: true
- Enforces enabled view encapsulation.Special thanks to @wKoza, @GregOnNet and @connor4312 for their contributions.
Features
ViewEncapsulation
#300 509c8d9. Big thanks to @GregOnNet.Bug Fixes
*ngFor
#306 36705fcv3.0.1
Compare Source
Bug Fixes
usePipeDecoratorRule
#299 c5869e0.v3.0.0
Compare Source
Major release required because of the breaking changes introduced by tslint@5. The
ngast
support will be pushed to codelyzer@4.Features
"directive-selector": [true, ["attribute", "element"], "sg", "camelCase"],
"component-selector": [true, ["element", "attribute"], "sg", "kebab-case"],
as
syntax in expressions #289 a7500cbRefactoring
ng2Walker
tongWalker
01bffd5Configuration
📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).
🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.
♻ Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.
🔕 Ignore: Close this PR and you won't be reminded about these updates again.
This PR was generated by Mend Renovate. View the repository job log.