Skip to content

Commit fc27498

Browse files
committed
add changelog
Signed-off-by: Sebastian Malton <sebastian@malton.name>
1 parent 2c84947 commit fc27498

File tree

2 files changed

+1
-1
lines changed

2 files changed

+1
-1
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@ This change log adheres to standards from [Keep a CHANGELOG](https://keepachange
2525
- [Docs] make rule doc titles consistent ([#2393], thanks [@TheJaredWilcurt])
2626
- [Docs] `order`: TS code examples should use TS code blocks ([#2411], thanks [@MM25Zamanian])
2727
- [Docs] `no-unresolved`: fix link ([#2417], thanks [@kylemh])
28+
- [Refactor] `no-cycle`: Improve performance by using caching ([#2419], thanks [@nokel81])
2829

2930
## [2.25.4] - 2022-01-02
3031

src/rules/no-cycle.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,6 @@ module.exports = {
3939
},
4040
_traversed: traversed,
4141
create: (context) => {
42-
// const traversed = new Set();
4342
const myPath = context.getPhysicalFilename ? context.getPhysicalFilename() : context.getFilename();
4443
if (myPath === '<text>') return {}; // can't cycle-check a non-file
4544

0 commit comments

Comments
 (0)