-
-
Notifications
You must be signed in to change notification settings - Fork 1.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'PiFansubs' of https://github.com/Kuriel23/Presences int…
…o PiFansubs
- Loading branch information
Showing
27 changed files
with
677 additions
and
403 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,46 @@ | ||
# This workflow uses actions that are not certified by GitHub. | ||
# They are provided by a third-party and are governed by | ||
# separate terms of service, privacy policy, and support | ||
# documentation. | ||
# ESLint is a tool for identifying and reporting on patterns | ||
# found in ECMAScript/JavaScript code. | ||
# More details at https://github.com/eslint/eslint | ||
# and https://eslint.org | ||
|
||
name: ESLint | ||
|
||
on: | ||
push: | ||
branches: ["main"] | ||
pull_request: | ||
# The branches below must be a subset of the branches above | ||
branches: ["main"] | ||
|
||
jobs: | ||
eslint: | ||
name: Run eslint scanning | ||
runs-on: ubuntu-latest | ||
permissions: | ||
contents: read | ||
security-events: write | ||
actions: read # only required for a private repository by github/codeql-action/upload-sarif to get the Action run status | ||
steps: | ||
- name: Checkout code | ||
uses: actions/checkout@v4 | ||
|
||
- name: Install ESLint | ||
run: | | ||
npm install | ||
npm install @microsoft/eslint-formatter-sarif@3.1.0 | ||
- name: Run ESLint | ||
env: | ||
SARIF_ESLINT_IGNORE_SUPPRESSED: "true" | ||
run: npx eslint . --config .eslintrc.json --ext .js,.jsx,.ts,.tsx --format @microsoft/eslint-formatter-sarif --output-file eslint-results.sarif | ||
continue-on-error: true | ||
|
||
- name: Upload analysis results to GitHub | ||
uses: github/codeql-action/upload-sarif@v3 | ||
with: | ||
sarif_file: eslint-results.sarif | ||
wait-for-processing: true |
Large diffs are not rendered by default.
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
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 |
---|---|---|
@@ -0,0 +1,42 @@ | ||
{ | ||
"bravesearch.settings": { | ||
"description": "Page name", | ||
"message": "Viewing their settings..." | ||
}, | ||
"bravesearch.help": { | ||
"description": "Page name", | ||
"message": "Help Center" | ||
}, | ||
"bravesearch.searchImgFor": { | ||
"description": "Displayed when the user is searching for an image. The search query will be displayed below.", | ||
"message": "Searching images for:" | ||
}, | ||
"bravesearch.searchImgSomething": { | ||
"description": "Displayed when the user is searching for an image.", | ||
"message": "Searching up images..." | ||
}, | ||
"bravesearch.searchNewsFor": { | ||
"description": "Displayed when the user is searching for a news. The search query will be displayed below.", | ||
"message": "Searching news for:" | ||
}, | ||
"bravesearch.searchNewsSomething": { | ||
"description": "Displayed when the user is searching for a news.", | ||
"message": "Searching up news..." | ||
}, | ||
"bravesearch.searchGogglesFor": { | ||
"description": "Displayed when the user is searching for an goggle. The search query will be displayed below.", | ||
"message": "Searching goggles for:" | ||
}, | ||
"bravesearch.searchGogglesSomething": { | ||
"description": "Displayed when the user is searching for an goggle.", | ||
"message": "Searching up goggles..." | ||
}, | ||
"bravesearch.searchVidFor": { | ||
"description": "Displayed when the user is searching for an video. The search query will be displayed below.", | ||
"message": "Searching videos for:" | ||
}, | ||
"bravesearch.searchVidSomething": { | ||
"description": "Displayed when the user is searching for an video.", | ||
"message": "Searching up videos..." | ||
} | ||
} |
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
Oops, something went wrong.