Skip to content

Commit 1b02554

Browse files
perkiclaude
andcommitted
Migrate linting to eslint 9 + neostandard, add engines >= 20
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
1 parent 088475a commit 1b02554

6 files changed

Lines changed: 2031 additions & 458 deletions

File tree

.eslintrc.yml

Lines changed: 0 additions & 2 deletions
This file was deleted.

docs/pack.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"publicationDate": "2026-02-02T14:08:18.391Z",
2+
"publicationDate": "2026-02-12T18:19:36.712Z",
33
"streams": [
44
{
55
"id": "body",

eslint.config.mjs

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
import neostandard from 'neostandard';
2+
3+
export default [
4+
...neostandard({ semi: true }),
5+
{
6+
ignores: ['node_modules/*', 'docs/*']
7+
},
8+
{
9+
files: ['tests/**/*.js'],
10+
languageOptions: {
11+
globals: {
12+
describe: 'readonly',
13+
it: 'readonly',
14+
before: 'readonly',
15+
after: 'readonly',
16+
beforeEach: 'readonly',
17+
afterEach: 'readonly'
18+
}
19+
}
20+
}
21+
];

0 commit comments

Comments
 (0)