Skip to content

Commit aeb2c30

Browse files
authored
fix: proto 3 requirement handling (#114)
1 parent 1747c1d commit aeb2c30

File tree

11 files changed

+3851
-2468
lines changed

11 files changed

+3851
-2468
lines changed

.eslintignore

Lines changed: 0 additions & 9 deletions
This file was deleted.

.eslintrc

Lines changed: 13 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -119,7 +119,7 @@ rules:
119119
"@typescript-eslint/ban-types": "off"
120120

121121
overrides:
122-
- files:
122+
- files:
123123
- "test/**"
124124
- "*.spec.ts"
125125
- "*.test.ts"
@@ -129,4 +129,15 @@ overrides:
129129
security/detect-object-injection: 0
130130
security/detect-non-literal-fs-filename: 0
131131
"@typescript-eslint/no-non-null-assertion": 0
132-
"@typescript-eslint/no-unused-vars": 0
132+
"@typescript-eslint/no-unused-vars": 0
133+
134+
ignorePatterns:
135+
- node_modules
136+
- '*.tgz'
137+
- .vscode
138+
- .DS_Store
139+
- /docs
140+
- /coverage
141+
- /lib
142+
- /esm
143+
- /cjs

.github/workflows/if-nodejs-pr-testing.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
runs-on: ${{ matrix.os }}
1515
strategy:
1616
matrix:
17-
# Using macos-13 instead of latest (macos-14) due to an issue with Puppeteer and such runner.
17+
# Using macos-13 instead of latest (macos-14) due to an issue with Puppeteer and such runner.
1818
# See: https://github.com/puppeteer/puppeteer/issues/12327 and https://github.com/asyncapi/parser-js/issues/1001
1919
os: [ubuntu-latest, macos-13, windows-latest]
2020
steps:
@@ -36,16 +36,16 @@ jobs:
3636
name: Should Run
3737
run: echo "shouldrun=true" >> $GITHUB_OUTPUT
3838
shell: bash
39-
- if: steps.should_run.outputs.shouldrun == 'true'
39+
- if: steps.should_run.outputs.shouldrun == 'true'
4040
name: Set git to use LF #to once and for all finish neverending fight between Unix and Windows
4141
run: |
4242
git config --global core.autocrlf false
4343
git config --global core.eol lf
4444
shell: bash
45-
- if: steps.should_run.outputs.shouldrun == 'true'
45+
- if: steps.should_run.outputs.shouldrun == 'true'
4646
name: Checkout repository
4747
uses: actions/checkout@v4
48-
- if: steps.should_run.outputs.shouldrun == 'true'
48+
- if: steps.should_run.outputs.shouldrun == 'true'
4949
name: Check if Node.js project and has package.json
5050
id: packagejson
5151
run: test -e ./package.json && echo "exists=true" >> $GITHUB_OUTPUT || echo "exists=false" >> $GITHUB_OUTPUT

.github/workflows/if-nodejs-release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ jobs:
3333
runs-on: ${{ matrix.os }}
3434
strategy:
3535
matrix:
36-
# Using macos-13 instead of latest (macos-14) due to an issue with Puppeteer and such runner.
36+
# Using macos-13 instead of latest (macos-14) due to an issue with Puppeteer and such runner.
3737
# See: https://github.com/puppeteer/puppeteer/issues/12327 and https://github.com/asyncapi/parser-js/issues/1001
3838
os: [ubuntu-latest, macos-13, windows-latest]
3939
steps:

0 commit comments

Comments
 (0)