Skip to content

Commit

Permalink
fixed prettier issue
Browse files Browse the repository at this point in the history
  • Loading branch information
dEdmishka committed Oct 20, 2023
1 parent 1e1d5e6 commit 2227c74
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .lintstagedrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,4 @@ module.exports = {
'*.{js,ts}': () => 'npm run typescript:check',
'*': (files) =>
`cspell --show-suggestions --quiet --gitignore ${toRelative(files)}`,
};
};
3 changes: 1 addition & 2 deletions src/utils/relativePath.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,4 @@ const path = require('node:path');
const toRelative = (files) =>
files.map((file) => path.relative(process.cwd(), file)).join(' ');


module.exports = toRelative;
module.exports = toRelative;

0 comments on commit 2227c74

Please sign in to comment.