Skip to content

Commit

Permalink
fix(sage-monorepo): fix expression for SQL files in lint-staged config (
Browse files Browse the repository at this point in the history
  • Loading branch information
tschaffter authored Oct 1, 2024
1 parent 80a816e commit e3d1844
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lint-staged.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ module.exports = {
`hadolint ${filenames.join(' ')}`,
],

'**/*.{sql}': (filenames) => [
'**/*.sql': (filenames) => [
// Format files with Prettier
`prettier --write ${filenames.join(' ')}`,
// Lint files with SQLFluff
Expand Down

0 comments on commit e3d1844

Please sign in to comment.