Skip to content

Commit

Permalink
chore: add linting to action core javascript files
Browse files Browse the repository at this point in the history
  • Loading branch information
MikeMcC399 committed Feb 25, 2025
1 parent 1052aa9 commit 01597df
Show file tree
Hide file tree
Showing 3 changed files with 995 additions and 2 deletions.
16 changes: 16 additions & 0 deletions eslint.config.mjs
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
import globals from 'globals'
import pluginJs from '@eslint/js'

export default [
pluginJs.configs.recommended,
{ name: 'global-ignores', ignores: ['dist/', 'examples/'] },
{
name: `all-js`,
languageOptions: {
globals: {
...globals.browser,
...globals.node
}
}
}
]
Loading

0 comments on commit 01597df

Please sign in to comment.