Skip to content

Commit

Permalink
fixing linting issues
Browse files Browse the repository at this point in the history
  • Loading branch information
catdad committed Nov 6, 2023
1 parent 5517efa commit f1e285f
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
3 changes: 2 additions & 1 deletion .eslintrc.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
{
"extends": "eslint:recommended",
"parser": "babel-eslint",
"env": {
"es6": true,
"node": true
Expand All @@ -15,4 +16,4 @@
"quotes": ["error", "single"],
"semi": ["error", "always"]
}
}
}
1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@
},
"homepage": "https://github.com/catdad-experiments/libheif-js#readme",
"devDependencies": {
"babel-eslint": "^10.1.0",
"chai": "^4.2.0",
"esbuild": "^0.19.5",
"eslint": "^5.16.0",
Expand Down
4 changes: 2 additions & 2 deletions test/libheif.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -53,8 +53,8 @@ describe('libheif (WASM esm bundle)', () => {
let proxyTarget = {};

const libheifProxy = new Proxy(proxyTarget, {
get(target, prop, receiver) {
return dynamicLibheif[prop]
get(target, prop) {
return dynamicLibheif[prop];
}
});

Expand Down

0 comments on commit f1e285f

Please sign in to comment.