Skip to content

Commit

Permalink
Update CHANGELOG.md
Browse files Browse the repository at this point in the history
  • Loading branch information
utarwyn committed Jun 7, 2024
1 parent f085881 commit b2fb907
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 4 deletions.
3 changes: 2 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,12 +10,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Added

- [#39](https://github.com/green-code-initiative/ecoCode-javascript/issues/39) Add rule `@ecocode/avoid-brightness-override` (EC522)
- [#41](https://github.com/green-code-initiative/ecoCode-javascript/pull/41) Add rule `@ecocode/no-torch` (EC530)
- Add support for SonarQube up to 10.5

### Changed

- Update Docker Compose configuration file to V2
- [#44](https://github.com/green-code-initiative/ecoCode-javascript/pull/44) Implement the rule EC523 for React Native
- Update Docker Compose configuration file to V2

### Deleted

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -42,10 +42,10 @@ public static List<Class<? extends JavaScriptCheck>> getAllChecks() {
NoImportAllFromLibrary.class,
NoMultipleAccessDomElement.class,
NoMultipleStyleChanges.class,
NoTorch.class,
PreferCollectionsWithPagination.class,
PreferShorthandCSSNotations.class,
ProvidePrintCSS.class,
NoTorch.class
ProvidePrintCSS.class
);
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
"EC26",
"EC29",
"EC30",
"EC523"
"EC523",
"EC530"
]
}

0 comments on commit b2fb907

Please sign in to comment.