Skip to content

Commit e12aec4

Browse files
committed
get rid of explicit module check
1 parent bcf85f7 commit e12aec4

File tree

2 files changed

+1
-25
lines changed

2 files changed

+1
-25
lines changed

eslint.config.mjs

Lines changed: 1 addition & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -445,29 +445,6 @@ export default [{
445445
"jsdoc/require-jsdoc": OFF,
446446
"jsdoc/require-description": OFF,
447447
},
448-
}, {
449-
files: [
450-
"packages/**/*.ts",
451-
"packages/**/*.tsx"
452-
],
453-
454-
rules: {
455-
"@typescript-eslint/explicit-module-boundary-types": ERROR,
456-
},
457-
}, {
458-
files: [
459-
"**/dev/**",
460-
"**/test/**",
461-
"**/stories/**",
462-
"**/docs/**",
463-
"**/chromatic/**",
464-
"**/chromatic-fc/**",
465-
"**/__tests__/**"
466-
],
467-
468-
rules: {
469-
"@typescript-eslint/explicit-module-boundary-types": OFF,
470-
},
471448
}, {
472449
files: [
473450
"packages/@react-aria/focus/src/**/*.ts",
@@ -504,4 +481,4 @@ export default [{
504481
rules: {
505482
"react/react-in-jsx-scope": OFF,
506483
},
507-
}];
484+
}];

packages/@react-spectrum/overlays/src/OpenTransition.tsx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,6 @@ const OPEN_STATES = {
3232
*/
3333

3434
export function OpenTransition(
35-
// eslint-disable-next-line @typescript-eslint/explicit-module-boundary-types
3635
props: any
3736
): JSX.Element | ReactElement<any, string | JSXElementConstructor<any>>[] {
3837
// Do not apply any transition if in chromatic.

0 commit comments

Comments
 (0)