Skip to content

Commit

Permalink
build: change .prettierrc → prettier.config.js
Browse files Browse the repository at this point in the history
  • Loading branch information
m-dzn committed Aug 5, 2023
1 parent 8e022ef commit 9a05ad6
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 10 deletions.
4 changes: 1 addition & 3 deletions .github/workflows/git-push.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,9 @@ on:
jobs:
build:
runs-on: ubuntu-latest
container: ubuntu
container: pandoc/latex
steps:
- uses: actions/checkout@v2
- name: filters output_temp/ to output/ using rsync
run: apk add rsync && rsync -arv --include="/.prettierrc" --include="/.gitignore" --include="/.npmrc" output_temp/ output/
- name: Install mustache (to update the date)
run: apk add ruby && gem install mustache
- name: creates output
Expand Down
7 changes: 0 additions & 7 deletions .prettierrc

This file was deleted.

7 changes: 7 additions & 0 deletions prettier.config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
export default {
trailingComma: "all",
singleQuote: true,
printWidth: 100,
arrowParens: "avoid",
endOfLine: "auto",
};

0 comments on commit 9a05ad6

Please sign in to comment.