-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(sage-monorepo): configure Prettier as the default formatter (#2793)
- Loading branch information
1 parent
957d047
commit 9bfc0e9
Showing
781 changed files
with
49,643 additions
and
246,471 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -23,4 +23,4 @@ jobs: | |
- name: Lint Dockerfiles | ||
uses: hadolint/[email protected] | ||
with: | ||
recursive: true | ||
recursive: true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,14 @@ | ||
name: Update OpenChallenges DB files | ||
on: | ||
schedule: | ||
- cron: "0 0 * * *" # daily at 00:00 UTC | ||
- cron: '0 0 * * *' # daily at 00:00 UTC | ||
workflow_dispatch: | ||
|
||
jobs: | ||
update: | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
|
||
# schematic only supports Python 3.9 and 3.10, so we will need | ||
# to specifically use one of these versions. | ||
- name: Install system dependencies | ||
|
@@ -27,7 +26,7 @@ jobs: | |
- name: Create Google Client credentials file | ||
uses: jsdaniell/[email protected] | ||
with: | ||
name: "service_account.json" | ||
name: 'service_account.json' | ||
json: ${{ secrets.GOOGLE_CLIENT_JSON }} | ||
|
||
- name: Update dump files | ||
|
@@ -47,11 +46,11 @@ jobs: | |
- name: Get current date | ||
run: | | ||
echo "TODAY=$(date +"%Y-%m-%d")" >> $GITHUB_ENV | ||
- name: Push changes, then create or update pull request | ||
uses: peter-evans/create-pull-request@v6 | ||
with: | ||
title: "chore(openchallenges): ${{ env.TODAY }} DB update" | ||
with: | ||
title: 'chore(openchallenges): ${{ env.TODAY }} DB update' | ||
body: Daily OC database update(s) | ||
commit-message: "${{ env.TODAY }}: add latest CSV dump files" | ||
commit-message: '${{ env.TODAY }}: add latest CSV dump files' | ||
branch: openchallenges/db-update |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
# Prettier configuration | ||
printWidth: 100 | ||
singleQuote: true | ||
plugins: | ||
- prettier-plugin-java |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
{ | ||
// Extensions should be defined in `.devcontainer/devcontainer.json` instead of here. | ||
"recommendations": [] | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.