forked from mysticatea/eslint-plugin
-
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: add ESLint v9 compatibility layer
- Loading branch information
1 parent
3ee07fc
commit 9e8e0e8
Showing
10 changed files
with
111 additions
and
83 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
/* eslint-disable no-restricted-properties */ | ||
Check failure on line 1 in lib/eslint-compat.js GitHub Actions / ⬣ Lint (ESLint@6)
Check failure on line 1 in lib/eslint-compat.js GitHub Actions / ⬣ Lint (ESLint@7)
|
||
|
||
"use strict" | ||
|
||
function getDeclaredVariables(context, node) { | ||
return ( | ||
getSourceCode(context).getDeclaredVariables?.(node) ?? | ||
context.getDeclaredVariables(node) | ||
) | ||
} | ||
|
||
function getSourceCode(context) { | ||
return context.sourceCode ?? context.getSourceCode() | ||
} | ||
|
||
function getScope(context, node) { | ||
return getSourceCode(context).getScope?.(node) ?? context.getScope() | ||
} | ||
|
||
module.exports = { | ||
getDeclaredVariables, | ||
getSourceCode, | ||
getScope, | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.