Skip to content

Commit

Permalink
Fix ESLint warning
Browse files Browse the repository at this point in the history
  • Loading branch information
ai committed May 6, 2024
1 parent 3d939cc commit fb508bc
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 3 deletions.
6 changes: 6 additions & 0 deletions eslint.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,5 +11,11 @@ export default [
'import/export': 'off', // Until they fix flat config support
'no-control-regex': 'off'
}
},
{
files: ['test/*.ts'],
rules: {
'n/no-unsupported-features/node-builtins': 'off'
}
}
]
6 changes: 3 additions & 3 deletions index.js
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
export * from './compat.js'
export * from './focus-group.js'
export * from './hotkey.js'
export * from './hidden.js'
export * from './press.js'
export * from './hotkey.js'
export * from './jump.js'
export * from './overrides.js'
export * from './compat.js'
export * from './press.js'

export function startKeyUX(window, plugins) {
let unbinds = plugins.map(plugin => plugin(window))
Expand Down

0 comments on commit fb508bc

Please sign in to comment.