Skip to content

Commit

Permalink
add changelog
Browse files Browse the repository at this point in the history
Signed-off-by: Sebastian Malton <sebastian@malton.name>
  • Loading branch information
Nokel81 committed Mar 30, 2022
1 parent 2c84947 commit fc27498
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 1 deletion.
1 change: 1 addition & 0 deletions CHANGELOG.md
Expand Up @@ -25,6 +25,7 @@ This change log adheres to standards from [Keep a CHANGELOG](https://keepachange
- [Docs] make rule doc titles consistent ([#2393], thanks [@TheJaredWilcurt])
- [Docs] `order`: TS code examples should use TS code blocks ([#2411], thanks [@MM25Zamanian])
- [Docs] `no-unresolved`: fix link ([#2417], thanks [@kylemh])
- [Refactor] `no-cycle`: Improve performance by using caching ([#2419], thanks [@nokel81])

## [2.25.4] - 2022-01-02

Expand Down
1 change: 0 additions & 1 deletion src/rules/no-cycle.js
Expand Up @@ -39,7 +39,6 @@ module.exports = {
},
_traversed: traversed,
create: (context) => {
// const traversed = new Set();
const myPath = context.getPhysicalFilename ? context.getPhysicalFilename() : context.getFilename();
if (myPath === '<text>') return {}; // can't cycle-check a non-file

Expand Down

0 comments on commit fc27498

Please sign in to comment.