forked from carbon-design-system/carbon
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore(deps): update dependency eslint to v9 (carbon-design-system#16577)
* chore(deps): update dependency eslint to v9 * fix: ran yarn dedupe * fix: added eslint.config * fix: fixed flatted dependency * fix: yarn dedupe --------- Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: Guilherme Datilio Ribeiro <[email protected]>
- Loading branch information
1 parent
250923e
commit 47ef3e4
Showing
28 changed files
with
252 additions
and
77 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
Binary file added
BIN
+66.7 KB
.yarn/cache/@eslint-community-regexpp-npm-4.10.0-6bfb984c81-8c36169c81.zip
Binary file not shown.
Binary file removed
BIN
-54.4 KB
.yarn/cache/@eslint-community-regexpp-npm-4.5.1-bf72922237-e31e456d44.zip
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file added
BIN
+17.1 KB
.yarn/cache/@humanwhocodes-config-array-npm-0.13.0-843095a032-524df31e61.zip
Binary file not shown.
Binary file added
BIN
+8.53 KB
.yarn/cache/@humanwhocodes-object-schema-npm-2.0.3-4f0e508cd9-05bb99ed06.zip
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file renamed
BIN
+9.74 KB
.../keyv-npm-4.5.3-d2382300dd-2c96e345ec.zip → .../keyv-npm-4.5.4-4c8e2cf7f7-167eb6ef64.zip
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
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,75 @@ | ||
export default [ | ||
{ | ||
languageOptions: { | ||
parser: { | ||
meta: { | ||
name: 'Ignore Without Parsing', | ||
}, | ||
|
||
// Ignore Paring error | ||
parse: function () { | ||
return { | ||
type: 'Program', | ||
loc: {}, | ||
comments: [], | ||
range: [0, 0], | ||
body: [], | ||
tokens: [], | ||
}; | ||
}, | ||
}, | ||
}, | ||
}, | ||
|
||
{ | ||
ignores: [ | ||
// Build folders | ||
'/build', | ||
'packages/*/build/', | ||
'packages/*/examples/*/build/', | ||
'es', | ||
'lib', | ||
'dist', | ||
'umd', | ||
|
||
'node_modules', | ||
'packages/*/examples/*', | ||
|
||
// Components | ||
'packages/components/demo/*.css', | ||
'packages/components/demo/*.map', | ||
'packages/components/demo/*.js', | ||
'packages/components/demo/js/prism.js', | ||
'packages/components/demo/hot', | ||
'!packages/components/demo/index.js', // This negation might need manual handling | ||
'packages/components/dist', | ||
'packages/components/tests/a11y-results', | ||
'packages/components/tests/coverage', | ||
'packages/components/es', | ||
'packages/components/umd', | ||
'packages/components/scripts', | ||
'packages/components/css', | ||
'packages/components/scss', | ||
'packages/components/html', | ||
'packages/components/docs/js', | ||
'packages/components/node_modules', | ||
'packages/components/scss/globals/vendor/**', | ||
'packages/components/src/globals/scss/vendor/**', | ||
|
||
// Upgrade | ||
'**/__testfixtures__/**', | ||
'packages/upgrade/cli.js', | ||
|
||
// React | ||
'**/storybook-static/**', | ||
'packages/react/icons/index.js', | ||
'packages/react/icons/index.esm.js', | ||
|
||
// Icons React | ||
'packages/icons-react/next/**', | ||
|
||
// Templates | ||
'packages/cli/src/component/templates/**', | ||
], | ||
}, | ||
]; |
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.