8000 Tags · Endhuine/detekt · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

Tags: Endhuine/detekt

Tags

v1.17.1

Toggle v1.17.1's commit message

Verified

This commit was signed with the committer’s verified signature. The key has expired.
cortinico Nicola Corti
Prepare Detekt 1.17.1

v1.17.0

Toggle v1.17.0's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Fix crash for DontDowncastCollectionTypes on Synthetic types (detekt#…

…3776)

v1.17.0-RC3

Toggle v1.17.0-RC3's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
New Rule: ObjectLiteralToLambda (detekt#3599)

v1.17.0-RC2

Toggle v1.17.0-RC2's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Update config file due to invalid argument (detekt#3735)

v1.17.0-RC1

Toggle v1.17.0-RC1's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Remove --stacktrace now that we have scan (detekt#3724)

v1.16.0

Toggle v1.16.0's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Merge SARIF reports (detekt#3522)

* Merge SARIF reports

* Update docs/pages/reporting.md

Co-authored-by: Nicola Corti <corti.nico@gmail.com>

* Merge Gradle tasks into one

* Remove DetektSarifReportMergeTest.kt

* Remove SarifReportMergeTask.kt

* Update Doc

* Update Doc

Co-authored-by: Nicola Corti <corti.nico@gmail.com>

v1.16.0-RC3

Toggle v1.16.0-RC3's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Gradle Plugin tests should access also Maven Local (detekt#3510)

v1.16.0-RC2

Toggle v1.16.0-RC2's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Allow using regular expressions when defining license header templates (

detekt#3486)

Problem: different projects might impose different rules on license headers.
It's not uncommon, for example, that a year in the license header is the year when the source
file was created. This leads to a situation when different source files have different license
headers (at least some parts of them differ) making it impossible to use a single static
license header template to match against.

This change makes it possible to define license header templates as regexps.
An example of such template is:
  \/\/ Copyright 20[0-9]{2} Artur Bosch & Contributors
which would match both
  // Copyright 2020 Artur Bosch & Contributors
and
  // Copyright 2021 Artur Bosch & Contributors

The way `AbsentOrWrongFileLicense` works now is controlled
by the new configuration option `licenseTemplateIsRegex`:
when `licenseTemplateIsRegex` is false the template is considered to be static
and the old matching rules apply.
If `licenseTemplateIsRegex` is set to true the new regexp based logic kicks in.

To avoid breakage of existing projects, the added configuration option
`licenseTemplateIsRegex` is disabled by default.

This commit implements a feature requested here detekt#3100.

v1.16.0-RC1

Toggle v1.16.0-RC1's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Improve documentation (detekt#3410)

v1.15.0

Toggle v1.15.0's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
NamedArguments: fix false positive with varargs (detekt#3294)

0