Skip to content

Commit

Permalink
fixes lint issue
Browse files Browse the repository at this point in the history
Signed-off-by: Ashwin P Chandran <ashwinpc@amazon.com>
  • Loading branch information
ashwin-pc committed Apr 24, 2024
1 parent 453613c commit 9d73dd1
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/dev/precommit_hook/check_dev_docs.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,9 @@ export async function checkDevDocs(log, files) {
const path = file.getRelativePath();

if (path === SIDEBAR_PATH) {
throw Error(`The ${SIDEBAR_PATH} file of the developer docs has been modified but is not ready to be committed. This can be done by performing "git add ${SIDEBAR_PATH}" and committing the changes.`);
throw Error(
`The ${SIDEBAR_PATH} file of the developer docs has been modified but is not ready to be committed. This can be done by performing "git add ${SIDEBAR_PATH}" and committing the changes.`
);
}
});
}

0 comments on commit 9d73dd1

Please sign in to comment.