Skip to content

Commit 03a2e57

Browse files
committed
chore: fix linting errors that snuck through
1 parent 58f1015 commit 03a2e57

File tree

3 files changed

+7
-4
lines changed

3 files changed

+7
-4
lines changed

packages/json/test/fixtures/.eslintrc

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
},
55
"rules": {
66
"import/extensions": "off",
7+
"import/no-unresolved": "off",
78
"import/prefer-default-export": "off",
89
"no-console": "off"
910
}

packages/strip/README.md

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -36,9 +36,11 @@ export default {
3636
dir: 'output',
3737
format: 'cjs'
3838
},
39-
plugins: [strip({
40-
labels: ['unittest']
41-
})]
39+
plugins: [
40+
strip({
41+
labels: ['unittest']
42+
})
43+
]
4244
};
4345
```
4446

packages/wasm/test/index.js renamed to packages/wasm/test/test.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import { rollup } from 'rollup';
22
import test from 'ava';
33

44
// eslint-disable-next-line no-unused-vars, import/no-unresolved, import/extensions
5-
import wasm, { wabt, emscripten } from '../dist/index';
5+
import wasm from '../dist/index';
66

77
const AsyncFunction = Object.getPrototypeOf(async () => {}).constructor;
88

0 commit comments

Comments
 (0)