Skip to content

Commit 074ce35

Browse files
committed
chore: lint
1 parent e6d930c commit 074ce35

12 files changed

Lines changed: 13 additions & 13 deletions

File tree

.github/workflows/nodejs.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
node-version:
1313
- 22.x
1414
- 24.x
15-
- 25.x
15+
- 26.x
1616
steps:
1717
- uses: actions/checkout@v5
1818
- uses: oven-sh/setup-bun@v2
@@ -44,7 +44,7 @@ jobs:
4444
- name: Typos
4545
run: typos --write-changes
4646
- name: Commit fixes
47-
uses: EndBug/add-and-commit@v9
47+
uses: EndBug/add-and-commit@v10
4848
continue-on-error: true
4949
with:
5050
message: "chore: ${{ env.NAME }}: actions: lint ☘️"

.npmignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
*.config.js
33
*.config.*
44
*.log
5-
*.loc
5+
*.lock
66

77
.*
88

.nycrc.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"check-coverage": true,
2+
"checkCoverage": true,
33
"all": true,
44
"exclude": [
55
"**/*.spec.*",

lib/json.spec.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import {test} from 'supertape';
2-
import montag from 'montag';
2+
import {montag} from 'montag';
33
import {transform, parse} from 'putout';
44
import {print} from '#printer';
55

lib/printer.spec.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import montag from 'montag';
1+
import {montag} from 'montag';
22
import {tryCatch} from 'try-catch';
33
import * as acorn from 'acorn';
44
import {estreeToBabel} from 'estree-to-babel';

lib/tokenize/comments/comments.spec.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import montag from 'montag';
1+
import {montag} from 'montag';
22
import {types} from '@putout/babel';
33
import {replaceWithMultiple} from '@putout/operate';
44
import {

lib/tokenize/expressions/logical-expression/chain.spec.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import montag from 'montag';
1+
import {montag} from 'montag';
22
import {extend} from 'supertape';
33
import {parse, transform} from 'putout';
44
import {chain} from './chain.js';

lib/tokenize/expressions/member-expression/chain.spec.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import montag from 'montag';
1+
import {montag} from 'montag';
22
import {extend} from 'supertape';
33
import {parse, transform} from 'putout';
44
import {chain} from './chain.js';

lib/tokenize/expressions/object-expression/object-expression.spec.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import {parse, transform} from 'putout';
2-
import montag from 'montag';
2+
import {montag} from 'montag';
33
import {types} from '@putout/babel';
44
import {createTest} from '#test';
55
import {print} from '#printer';

lib/tokenize/is.spec.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import {test} from 'supertape';
2-
import montag from 'montag';
2+
import {montag} from 'montag';
33
import {__filesystem_name} from '@putout/operator-json';
44
import {parse, transform} from 'putout';
55
import {print} from '#printer';

0 commit comments

Comments
 (0)