Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Fix lint error when no build is present
The `create-release-branch.js` script targets the build output, so it
fails the `import/no-unresolved` ESLint rule unless a build is present.
This has been resolved with an ignore comment.
  • Loading branch information
Gudahtt committed Nov 7, 2022
commit 7107c612cd0482dfcfda2198d511fd6398566450
2 changes: 1 addition & 1 deletion bin/create-release-branch.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/env node

/* eslint-disable-next-line import/no-unassigned-import */
/* eslint-disable-next-line import/no-unassigned-import,import/no-unresolved */
require('../dist/cli');