Skip to content

Commit

Permalink
add typescript formatter
Browse files Browse the repository at this point in the history
  • Loading branch information
kcinay055679 committed Nov 18, 2024
1 parent 327baba commit 8b37bb8
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions backend/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -256,6 +256,22 @@
</importOrder>
<formatAnnotations />
</java>

<typescript>
<includes> <!-- You have to set the target manually -->
<include>src/**/*.ts</include>
</includes>

<tsfmt/> <!-- has its own section below -->
<prettier/> <!-- has its own section below -->
<eslint/> <!-- has its own section below -->
<biome/> <!-- has its own section below -->

<licenseHeader>
<content>/* (C)$YEAR */</content> <!-- or <file>${project.basedir}/license-header</file> -->
<delimiter>(import|const|declare|export|var) </delimiter>
</licenseHeader>
</typescript>
</configuration>
</plugin>
</plugins>
Expand Down

0 comments on commit 8b37bb8

Please sign in to comment.