Skip to content

Commit

Permalink
added target in prettierignore
Browse files Browse the repository at this point in the history
  • Loading branch information
byteZorvin committed Sep 9, 2024
1 parent f5886b8 commit 39a1802
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
1 change: 1 addition & 0 deletions .prettierignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
# Ignore artifacts:
build
coverage
target
dependencies
3 changes: 1 addition & 2 deletions format.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,7 @@ const fs = require("fs");
let file = process.argv[2];
console.log(file);

const data = JSON.parse(fs.readFileSync(file,
"utf8"));
const data = JSON.parse(fs.readFileSync(file, "utf8"));
data.public_memory = data.public_memory.map((e) => ({
...e,
value: `0x${e.value}`,
Expand Down

0 comments on commit 39a1802

Please sign in to comment.