Skip to content

Commit

Permalink
build(agoric-cli): disable Prettier for sdk-package-names.js
Browse files Browse the repository at this point in the history
  • Loading branch information
michaelfig committed Jan 5, 2022
1 parent 7ed58b9 commit 0fe96d6
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
3 changes: 2 additions & 1 deletion packages/agoric-cli/scripts/get-sdk-package-names.js
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,8 @@ ps.on('close', code => {
// DO NOT EDIT - automatically generated by ${basename(
new URL(import.meta.url).pathname,
)}
/* eslint-disable comma-dangle,quotes,prettier/prettier */
/* eslint-disable comma-dangle,quotes */
// prettier-ignore
export default ${JSON.stringify(workspaces, null, 2)};
`);
});
3 changes: 2 additions & 1 deletion packages/agoric-cli/src/sdk-package-names.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
// DO NOT EDIT - automatically generated by get-sdk-package-names.js
/* eslint-disable comma-dangle,quotes,prettier/prettier */
/* eslint-disable comma-dangle,quotes */
// prettier-ignore
export default [
"@agoric/access-token",
"@agoric/assert",
Expand Down

0 comments on commit 0fe96d6

Please sign in to comment.