File tree Expand file tree Collapse file tree 2 files changed +1
-1
lines changed Expand file tree Collapse file tree 2 files changed +1
-1
lines changed Original file line number Diff line number Diff line change @@ -25,6 +25,7 @@ This change log adheres to standards from [Keep a CHANGELOG](https://keepachange
25
25
- [ Docs] make rule doc titles consistent ([ #2393 ] , thanks [ @TheJaredWilcurt ] )
26
26
- [ Docs] ` order ` : TS code examples should use TS code blocks ([ #2411 ] , thanks [ @MM25Zamanian ] )
27
27
- [ Docs] ` no-unresolved ` : fix link ([ #2417 ] , thanks [ @kylemh ] )
28
+ - [ Refactor] ` no-cycle ` : Improve performance by using caching ([ #2419 ] , thanks [ @nokel81 ] )
28
29
29
30
## [ 2.25.4] - 2022-01-02
30
31
Original file line number Diff line number Diff line change @@ -39,7 +39,6 @@ module.exports = {
39
39
} ,
40
40
_traversed : traversed ,
41
41
create : ( context ) => {
42
- // const traversed = new Set();
43
42
const myPath = context . getPhysicalFilename ? context . getPhysicalFilename ( ) : context . getFilename ( ) ;
44
43
if ( myPath === '<text>' ) return { } ; // can't cycle-check a non-file
45
44
You can’t perform that action at this time.
0 commit comments