Skip to content

Commit

Permalink
build: narrow down prettier file set
Browse files Browse the repository at this point in the history
Fixes that the formatting check was catching some files incorrectly, like pnpm lock file.
  • Loading branch information
crisbeto committed Feb 14, 2025
1 parent 6edd468 commit 01292a1
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .ng-dev/format.mts
Original file line number Diff line number Diff line change
Expand Up @@ -6,5 +6,7 @@ import {FormatConfig} from '@angular/ng-dev';
*/
export const format: FormatConfig = {
buildifier: true,
prettier: true,
prettier: {
matchers: ['**/*.{js,ts,mts,mjs,json}', '!.yarn/**'],
},
};

0 comments on commit 01292a1

Please sign in to comment.