Skip to content

Commit

Permalink
chore: fix linting errors that snuck through
Browse files Browse the repository at this point in the history
  • Loading branch information
shellscape committed Nov 29, 2019
1 parent 58f1015 commit 03a2e57
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 4 deletions.
1 change: 1 addition & 0 deletions packages/json/test/fixtures/.eslintrc
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
},
"rules": {
"import/extensions": "off",
"import/no-unresolved": "off",
"import/prefer-default-export": "off",
"no-console": "off"
}
Expand Down
8 changes: 5 additions & 3 deletions packages/strip/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,9 +36,11 @@ export default {
dir: 'output',
format: 'cjs'
},
plugins: [strip({
labels: ['unittest']
})]
plugins: [
strip({
labels: ['unittest']
})
]
};
```

Expand Down
2 changes: 1 addition & 1 deletion packages/wasm/test/index.js → packages/wasm/test/test.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import { rollup } from 'rollup';
import test from 'ava';

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

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

Expand Down

0 comments on commit 03a2e57

Please sign in to comment.