-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into unused-deps
- Loading branch information
Showing
23 changed files
with
4,162 additions
and
357 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,17 @@ | ||
| { | ||
| "env": { | ||
| "commonjs": true, | ||
| "es2021": true, | ||
| "node": true, | ||
| "jest": true | ||
| }, | ||
| "plugins": ["github"], | ||
| "extends": ["eslint:recommended", "prettier", "plugin:github/internal"], | ||
| "parserOptions": { | ||
| "ecmaVersion": 12 | ||
| }, | ||
| "rules": { | ||
| "semi": ["error", "never"] | ||
| }, | ||
| "ignorePatterns": ["/dist/", "/src/fixtures/", "/src/blank-configurations/"] | ||
| } |
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,40 +1,40 @@ | ||
| --- | ||
| name-template: "v$RESOLVED_VERSION" | ||
| tag-template: "v$RESOLVED_VERSION" | ||
| name-template: 'v$RESOLVED_VERSION' | ||
| tag-template: 'v$RESOLVED_VERSION' | ||
| template: | | ||
| # Changelog | ||
| $CHANGES | ||
| See details of [all code changes](https://github.com/$OWNER/$REPOSITORY/compare/$PREVIOUS_TAG...v$RESOLVED_VERSION) since previous release. | ||
| categories: | ||
| - title: "🚀 Features" | ||
| - title: '🚀 Features' | ||
| labels: | ||
| - "feature" | ||
| - "enhancement" | ||
| - title: "🐛 Bug Fixes" | ||
| - 'feature' | ||
| - 'enhancement' | ||
| - title: '🐛 Bug Fixes' | ||
| labels: | ||
| - "fix" | ||
| - "bugfix" | ||
| - "bug" | ||
| - title: "🧰 Maintenance" | ||
| - 'fix' | ||
| - 'bugfix' | ||
| - 'bug' | ||
| - title: '🧰 Maintenance' | ||
| labels: | ||
| - "infrastructure" | ||
| - "automation" | ||
| - "documentation" | ||
| - title: "🏎 Performance" | ||
| label: "performance" | ||
| change-template: "- $TITLE @$AUTHOR (#$NUMBER)" | ||
| - 'infrastructure' | ||
| - 'automation' | ||
| - 'documentation' | ||
| - title: '🏎 Performance' | ||
| label: 'performance' | ||
| change-template: '- $TITLE @$AUTHOR (#$NUMBER)' | ||
| version-resolver: | ||
| major: | ||
| labels: | ||
| - "type: breaking" | ||
| - 'type: breaking' | ||
| minor: | ||
| labels: | ||
| - "type: enhancement" | ||
| - 'type: enhancement' | ||
| patch: | ||
| labels: | ||
| - "type: bug" | ||
| - "type: maintenance" | ||
| - "type: documentation" | ||
| - 'type: bug' | ||
| - 'type: maintenance' | ||
| - 'type: documentation' | ||
| default: patch |
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,35 @@ | ||
| name: Lint code | ||
|
|
||
| on: | ||
| push: | ||
| branches: | ||
| - main | ||
| pull_request: | ||
|
|
||
| permissions: | ||
| contents: read | ||
|
|
||
| # This allows a subsequently queued workflow run to interrupt previous runs | ||
| concurrency: | ||
| group: '${{ github.workflow }} @ ${{ github.event.pull_request.head.label || github.head_ref || github.ref }}' | ||
| cancel-in-progress: true | ||
|
|
||
| jobs: | ||
| lint: | ||
| runs-on: ubuntu-latest | ||
| timeout-minutes: 2 | ||
| steps: | ||
| - name: Check out repo | ||
| uses: actions/checkout@v3 | ||
|
|
||
| - name: Setup Node | ||
| uses: actions/setup-node@v3 | ||
| with: | ||
| node-version: 16.x | ||
| cache: npm | ||
|
|
||
| - name: Install dependencies | ||
| run: npm ci | ||
|
|
||
| - name: Run linter | ||
| run: npm run lint:check |
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,5 @@ | ||
| # Ignore build artifacts | ||
| /dist/ | ||
|
|
||
| # Ignore all Markdown files | ||
| *.md |
Oops, something went wrong.