Skip to content

Commit c5d4bdc

Browse files
committed
Merge branch 'staging' into fix-srw-trim
2 parents 0607ac9 + fb2f8dc commit c5d4bdc

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

44 files changed

+437
-188
lines changed

.eslintrc.cjs

+4
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,9 @@ module.exports = {
33
extends: [
44
'eslint:recommended',
55
],
6+
plugins: [
7+
'jsdoc',
8+
],
69
env: {
710
es6: true,
811
},
@@ -78,6 +81,7 @@ module.exports = {
7881
'public/scripts/extensions/tts/lib/**',
7982
],
8083
rules: {
84+
'jsdoc/no-undefined-types': ['warn', { disableReporting: true, markVariablesAsUsed: true }],
8185
'no-unused-vars': ['error', { args: 'none' }],
8286
'no-control-regex': 'off',
8387
'no-constant-condition': ['error', { checkLoops: false }],

.github/workflows/pr-auto-manager.yml

+41
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,41 @@ permissions:
1111
pull-requests: write
1212

1313
jobs:
14+
run-eslint:
15+
name: ✅ Check ESLint on PR
16+
runs-on: ubuntu-latest
17+
# Only needs to run when code is changed
18+
if: github.event.action == 'opened' || github.event.action == 'synchronize'
19+
20+
steps:
21+
- name: Checkout Repository
22+
# Checkout
23+
# https://github.com/marketplace/actions/checkout
24+
uses: actions/checkout@v4.2.2
25+
26+
- name: Setup Node.js
27+
# Setup Node.js environment
28+
# https://github.com/marketplace/actions/setup-node-js-environment
29+
uses: actions/setup-node@v4.3.0
30+
with:
31+
node-version: 20
32+
33+
- name: Run npm install
34+
run: npm ci
35+
36+
- name: Run ESLint
37+
# Action ESLint
38+
# https://github.com/marketplace/actions/action-eslint
39+
uses: sibiraj-s/action-eslint@v3.0.1
40+
with:
41+
token: ${{ secrets.GITHUB_TOKEN }}
42+
eslint-args: '--ignore-path=.gitignore --quiet'
43+
extensions: 'js,ts'
44+
annotations: true
45+
ignore-patterns: |
46+
dist/
47+
lib/
48+
1449
label-by-size:
1550
name: 🏷️ Label PR by Size
1651
# This job should run after all others, to prevent possible concurrency issues
@@ -186,6 +221,12 @@ jobs:
186221
runs-on: ubuntu-latest
187222
if: github.event.pull_request.merged == true && github.event.pull_request.base.ref == 'staging'
188223

224+
# Override permissions, We need to be able to write to issues
225+
permissions:
226+
contents: read
227+
issues: write
228+
pull-requests: write
229+
189230
steps:
190231
- name: Extract Linked Issues From PR Description
191232
id: extract_issues

package-lock.json

+202-4
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+2-1
Original file line numberDiff line numberDiff line change
@@ -140,6 +140,7 @@
140140
"@types/write-file-atomic": "^4.0.3",
141141
"@types/yargs": "^17.0.33",
142142
"@types/yauzl": "^2.10.3",
143-
"eslint": "^8.57.1"
143+
"eslint": "^8.57.1",
144+
"eslint-plugin-jsdoc": "^48.10.0"
144145
}
145146
}

0 commit comments

Comments
 (0)