This repository has been archived by the owner on Aug 16, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
9 changed files
with
530 additions
and
504 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
593 changes: 297 additions & 296 deletions
593
.yarn/releases/yarn-4.1.1.cjs → .yarn/releases/yarn-4.2.2.cjs
Large diffs are not rendered by default.
Oops, something went wrong.
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 |
---|---|---|
@@ -1,7 +1,9 @@ | ||
defaultSemverRangePrefix: '' | ||
|
||
enableGlobalCache: true | ||
|
||
nmMode: classic | ||
|
||
nodeLinker: node-modules | ||
|
||
yarnPath: .yarn/releases/yarn-4.1.1.cjs | ||
yarnPath: .yarn/releases/yarn-4.2.2.cjs |
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,40 @@ | ||
import babelParser from '@babel/eslint-parser'; | ||
import js from '@eslint/js'; | ||
import eslintPrettier from 'eslint-config-prettier'; | ||
import jest from 'eslint-plugin-jest'; | ||
import globals from 'globals'; | ||
|
||
export default [ | ||
{ ignores: ['.idea/*', '.yarn/*', 'node_modules/*', 'coverage/*'] }, | ||
js.configs.recommended, | ||
eslintPrettier, | ||
{ | ||
files: ['**/*.js'], | ||
linterOptions: { | ||
noInlineConfig: true, | ||
}, | ||
languageOptions: { | ||
parser: babelParser, | ||
ecmaVersion: 2023, | ||
sourceType: 'module', | ||
globals: { | ||
...globals.node, | ||
}, | ||
parserOptions: { | ||
requireConfigFile: false, | ||
babelOptions: { | ||
plugins: ['@babel/plugin-syntax-import-assertions'], | ||
}, | ||
}, | ||
}, | ||
}, | ||
{ | ||
files: ['**/*.test.js'], | ||
plugins: { jest }, | ||
languageOptions: { | ||
globals: { | ||
...globals.jest, | ||
}, | ||
}, | ||
}, | ||
]; |
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.