Skip to content
This repository has been archived by the owner on Aug 31, 2023. It is now read-only.

refactor(rome_js_analyze): remove noExtraSemicolon #4576

Merged
merged 1 commit into from
Jun 16, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ was defined [#4479](https://github.com/rome/tools/issues/4479)

- Fix false positive diagnostics ([#4483](https://github.com/rome/tools/issues/4483)) that [`useHookAtTopLevel`](https://docs.rome.tools/lint/rules/usehookattoplevel/) caused to returning call expressions of a hook.
- Revert [#4359](https://github.com/rome/tools/issues/4359)

- Remove `lint/complexity/noExtraSEmicolon` ([#4553](https://github.com/rome/tools/issues/4553))
ematipico marked this conversation as resolved.
Show resolved Hide resolved

### Parser

Expand Down
1 change: 0 additions & 1 deletion crates/rome_diagnostics_categories/src/categories.rs
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,6 @@ define_categories! {

// complexity
"lint/complexity/noExtraBooleanCast": "https://docs.rome.tools/lint/rules/noExtraBooleanCast",
"lint/complexity/noExtraSemicolon": "https://docs.rome.tools/lint/rules/noExtraSemicolon",
"lint/complexity/noMultipleSpacesInRegularExpressionLiterals": "https://docs.rome.tools/lint/rules/noMultipleSpacesInRegularExpressionLiterals",
"lint/complexity/noUselessCatch": "https://docs.rome.tools/lint/rules/noUselessCatch",
"lint/complexity/noUselessConstructor": "https://docs.rome.tools/lint/rules/noUselessConstructor",
Expand Down
3 changes: 1 addition & 2 deletions crates/rome_js_analyze/src/analyzers/complexity.rs

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

155 changes: 0 additions & 155 deletions crates/rome_js_analyze/src/analyzers/complexity/no_extra_semicolon.rs

This file was deleted.

This file was deleted.

Loading