-
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.
style(prettier): run Prettier to clean up code formatting
- Loading branch information
Showing
17 changed files
with
9,017 additions
and
8,956 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
version: 2 | ||
updates: | ||
- package-ecosystem: "npm" | ||
directory: "/" | ||
schedule: | ||
interval: "weekly" | ||
- package-ecosystem: 'npm' | ||
directory: '/' | ||
schedule: | ||
interval: 'weekly' |
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: Install dependencies and build the project | ||
|
||
on: | ||
push: | ||
branches: | ||
- develop | ||
- main | ||
- "!dependabot/**" | ||
push: | ||
branches: | ||
- develop | ||
- main | ||
- '!dependabot/**' | ||
|
||
pull_request: | ||
branches: | ||
- develop | ||
- main | ||
- "!dependabot/**" | ||
pull_request: | ||
branches: | ||
- develop | ||
- main | ||
- '!dependabot/**' | ||
|
||
jobs: | ||
build: | ||
name: Build and start Node.js project | ||
runs-on: ubuntu-latest | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
node-version: | ||
- "20.11.0" | ||
build: | ||
name: Build and start Node.js project | ||
runs-on: ubuntu-latest | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
node-version: | ||
- '20.11.0' | ||
|
||
steps: | ||
- name: Checkout the current branch | ||
uses: actions/checkout@v4 | ||
steps: | ||
- name: Checkout the current branch | ||
uses: actions/checkout@v4 | ||
|
||
- name: Set up Node.js | ||
uses: actions/setup-node@v4 | ||
with: | ||
node-version: '${{ matrix.node-version }}' | ||
cache: npm | ||
- name: Set up Node.js | ||
uses: actions/setup-node@v4 | ||
with: | ||
node-version: '${{ matrix.node-version }}' | ||
cache: npm | ||
|
||
- name: Install dependencies in the project | ||
run: npm install | ||
- name: Install dependencies in the project | ||
run: npm install | ||
|
||
- name: Build the project | ||
run: npm run build | ||
- name: Build the project | ||
run: npm run build |
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,48 +1,48 @@ | ||
name: Run linting commands | ||
|
||
on: | ||
push: | ||
paths: | ||
- "**/*.md" | ||
push: | ||
paths: | ||
- '**/*.md' | ||
|
||
branches: | ||
- develop | ||
- main | ||
- "!dependabot/**" | ||
branches: | ||
- develop | ||
- main | ||
- '!dependabot/**' | ||
|
||
pull_request: | ||
paths: | ||
- "**/*.md" | ||
pull_request: | ||
paths: | ||
- '**/*.md' | ||
|
||
branches: | ||
- develop | ||
- main | ||
- "!dependabot/**" | ||
branches: | ||
- develop | ||
- main | ||
- '!dependabot/**' | ||
|
||
jobs: | ||
build: | ||
name: Build and start Node.js project | ||
runs-on: ubuntu-latest | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
node-version: | ||
- "20.11.0" | ||
command: | ||
- "lint:markdown" | ||
|
||
steps: | ||
- name: Checkout the current branch | ||
uses: actions/checkout@v4 | ||
|
||
- name: Set up Node.js | ||
uses: actions/setup-node@v4 | ||
with: | ||
node-version: '${{ matrix.node-version }}' | ||
cache: npm | ||
|
||
- name: Install dependencies in the project | ||
run: npm install | ||
|
||
- name: Run Node linting commands | ||
run: "npm run ${{ matrix.command }}" | ||
build: | ||
name: Build and start Node.js project | ||
runs-on: ubuntu-latest | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
node-version: | ||
- '20.11.0' | ||
command: | ||
- 'lint:markdown' | ||
|
||
steps: | ||
- name: Checkout the current branch | ||
uses: actions/checkout@v4 | ||
|
||
- name: Set up Node.js | ||
uses: actions/setup-node@v4 | ||
with: | ||
node-version: '${{ matrix.node-version }}' | ||
cache: npm | ||
|
||
- name: Install dependencies in the project | ||
run: npm install | ||
|
||
- name: Run Node linting commands | ||
run: 'npm run ${{ matrix.command }}' |
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,9 +1,9 @@ | ||
{ | ||
"recommendations": [ | ||
"esbenp.prettier-vscode", | ||
"dbaeumer.vscode-eslint", | ||
"stylelint.vscode-stylelint", | ||
"editorconfig.editorconfig", | ||
"davidanson.vscode-markdownlint", | ||
] | ||
"recommendations": [ | ||
"esbenp.prettier-vscode", | ||
"dbaeumer.vscode-eslint", | ||
"stylelint.vscode-stylelint", | ||
"editorconfig.editorconfig", | ||
"davidanson.vscode-markdownlint" | ||
] | ||
} |
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,13 +1,13 @@ | ||
{ | ||
"editor.tabSize": 2, | ||
"editor.insertSpaces": true, | ||
"editor.detectIndentation": false, | ||
"editor.defaultFormatter": "esbenp.prettier-vscode", | ||
"editor.formatOnSave": false, | ||
"editor.codeActionsOnSave": [ | ||
"source.addMissingImports", | ||
"source.fixAll.eslint" | ||
], | ||
"typescript.tsdk": "node_modules/typescript/lib", | ||
"typescript.enablePromptUseWorkspaceTsdk": true | ||
"editor.tabSize": 2, | ||
"editor.insertSpaces": true, | ||
"editor.detectIndentation": false, | ||
"editor.defaultFormatter": "esbenp.prettier-vscode", | ||
"editor.formatOnSave": false, | ||
"editor.codeActionsOnSave": [ | ||
"source.addMissingImports", | ||
"source.fixAll.eslint" | ||
], | ||
"typescript.tsdk": "node_modules/typescript/lib", | ||
"typescript.enablePromptUseWorkspaceTsdk": true | ||
} |
Oops, something went wrong.