Skip to content

Commit 046438b

Browse files
committed
chore: lint
1 parent a79d551 commit 046438b

3 files changed

Lines changed: 7 additions & 10 deletions

File tree

.github/workflows/nodejs.yml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,13 +13,14 @@ jobs:
1313
- 20.x
1414
- 22.x
1515
- 24.x
16+
- 25.x
1617
steps:
17-
- uses: actions/checkout@v4
18-
- uses: oven-sh/setup-bun@v1
18+
- uses: actions/checkout@v5
19+
- uses: oven-sh/setup-bun@v2
1920
with:
2021
bun-version: latest
2122
- name: Use Node.js ${{ matrix.node-version }}
22-
uses: actions/setup-node@v4
23+
uses: actions/setup-node@v6
2324
with:
2425
node-version: ${{ matrix.node-version }}
2526
- name: Install Redrun

.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+
"check-coverage": false,
33
"all": true,
44
"exclude": [
55
"**/*.spec.*",

nemo/state/parse-state.js

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -43,12 +43,9 @@ export const parseState = (source) => {
4343
},
4444
});
4545

46-
for (;index < lines.length; index++) {
46+
for (; index < lines.length; index++) {
4747
const line = lines[index];
48-
const {
49-
mark,
50-
name: submenuName,
51-
} = parseLine(line);
48+
const {mark, name: submenuName} = parseLine(line);
5249

5350
const selected = mark === '+';
5451

@@ -92,4 +89,3 @@ function parseLine(line) {
9289
show,
9390
};
9491
}
95-

0 commit comments

Comments
 (0)