Skip to content

Commit 36d920b

Browse files
committed
chore: format
1 parent 15ff06f commit 36d920b

Some content is hidden

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

48 files changed

+787
-842
lines changed

.eslintrc.json

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,7 @@
11
{
22
"root": true,
33
"parser": "@typescript-eslint/parser",
4-
"plugins": [
5-
"@typescript-eslint"
6-
],
4+
"plugins": ["@typescript-eslint"],
75
"extends": [
86
"eslint:recommended",
97
"plugin:@typescript-eslint/eslint-recommended",

.github/workflows/CI.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ jobs:
6666
- uses: UziTech/action-setup-atom@v1
6767
- uses: actions/[email protected]
6868
with:
69-
node-version: "*"
69+
node-version: '*'
7070
- name: NPM install
7171
run: npm install
7272
# - name: Build and Commit

.github/workflows/bump_deps.yml

Lines changed: 9 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ name: Bump_Dependencies
22

33
on:
44
schedule:
5-
- cron: "5 8 * * Sun" # 8:05 every Sunday
5+
- cron: '5 8 * * Sun' # 8:05 every Sunday
66

77
jobs:
88
Bump_Dependencies:
@@ -11,7 +11,7 @@ jobs:
1111
- uses: actions/checkout@v2
1212
- uses: actions/setup-node@v2
1313
with:
14-
node-version: "12"
14+
node-version: '12'
1515
- name: Setup PNPM
1616
uses: pnpm/[email protected]
1717
with:
@@ -24,7 +24,6 @@ jobs:
2424
ncu -u --dep prod
2525
pnpm install
2626
27-
2827
- uses: tibdex/github-app-token@v1
2928
id: generate-token
3029
with:
@@ -33,19 +32,18 @@ jobs:
3332
- uses: peter-evans/create-pull-request@v3
3433
with:
3534
token: ${{ steps.generate-token.outputs.token }}
36-
commit-message: "chore: Update Dependencies"
37-
title: "fix: Update Dependencies"
35+
commit-message: 'chore: Update Dependencies'
36+
title: 'fix: Update Dependencies'
3837
labels: Dependencies
39-
branch: "Bump_Dependencies"
40-
38+
branch: 'Bump_Dependencies'
4139

4240
Bump_devDependencies:
4341
runs-on: ubuntu-latest
4442
steps:
4543
- uses: actions/checkout@v2
4644
- uses: actions/setup-node@v2
4745
with:
48-
node-version: "12"
46+
node-version: '12'
4947
- name: Setup PNPM
5048
uses: pnpm/[email protected]
5149
with:
@@ -66,7 +64,7 @@ jobs:
6664
- uses: peter-evans/create-pull-request@v3
6765
with:
6866
token: ${{ steps.generate-token.outputs.token }}
69-
commit-message: "chore: Update devDependencies"
70-
title: "chore: Update devDependencies"
67+
commit-message: 'chore: Update devDependencies'
68+
title: 'chore: Update devDependencies'
7169
labels: Dependencies
72-
branch: "Bump_devDependencies"
70+
branch: 'Bump_devDependencies'

.github/workflows/codeql-analysis.yml

Lines changed: 34 additions & 34 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
#
44
# You may wish to alter this file to override the set of languages analyzed,
55
# or to provide custom queries or build logic.
6-
name: "CodeQL"
6+
name: 'CodeQL'
77

88
on:
99
push:
@@ -29,43 +29,43 @@ jobs:
2929
# https://docs.github.com/en/github/finding-security-vulnerabilities-and-errors-in-your-code/configuring-code-scanning#overriding-automatic-language-detection
3030

3131
steps:
32-
- name: Checkout repository
33-
uses: actions/checkout@v2
34-
with:
35-
# We must fetch at least the immediate parents so that if this is
36-
# a pull request then we can checkout the head.
37-
fetch-depth: 2
32+
- name: Checkout repository
33+
uses: actions/checkout@v2
34+
with:
35+
# We must fetch at least the immediate parents so that if this is
36+
# a pull request then we can checkout the head.
37+
fetch-depth: 2
3838

39-
# If this run was triggered by a pull request event, then checkout
40-
# the head of the pull request instead of the merge commit.
41-
- run: git checkout HEAD^2
42-
if: ${{ github.event_name == 'pull_request' }}
39+
# If this run was triggered by a pull request event, then checkout
40+
# the head of the pull request instead of the merge commit.
41+
- run: git checkout HEAD^2
42+
if: ${{ github.event_name == 'pull_request' }}
4343

44-
# Initializes the CodeQL tools for scanning.
45-
- name: Initialize CodeQL
46-
uses: github/codeql-action/init@v1
47-
with:
48-
languages: ${{ matrix.language }}
49-
# If you wish to specify custom queries, you can do so here or in a config file.
50-
# By default, queries listed here will override any specified in a config file.
51-
# Prefix the list here with "+" to use these queries and those in the config file.
52-
# queries: ./path/to/local/query, your-org/your-repo/queries@main
44+
# Initializes the CodeQL tools for scanning.
45+
- name: Initialize CodeQL
46+
uses: github/codeql-action/init@v1
47+
with:
48+
languages: ${{ matrix.language }}
49+
# If you wish to specify custom queries, you can do so here or in a config file.
50+
# By default, queries listed here will override any specified in a config file.
51+
# Prefix the list here with "+" to use these queries and those in the config file.
52+
# queries: ./path/to/local/query, your-org/your-repo/queries@main
5353

54-
# Autobuild attempts to build any compiled languages (C/C++, C#, or Java).
55-
# If this step fails, then you should remove it and run the build manually (see below)
56-
- name: Autobuild
57-
uses: github/codeql-action/autobuild@v1
54+
# Autobuild attempts to build any compiled languages (C/C++, C#, or Java).
55+
# If this step fails, then you should remove it and run the build manually (see below)
56+
- name: Autobuild
57+
uses: github/codeql-action/autobuild@v1
5858

59-
# ℹ️ Command-line programs to run using the OS shell.
60-
# 📚 https://git.io/JvXDl
59+
# ℹ️ Command-line programs to run using the OS shell.
60+
# 📚 https://git.io/JvXDl
6161

62-
# ✏️ If the Autobuild fails above, remove it and uncomment the following three lines
63-
# and modify them (or add more) to build your code if your project
64-
# uses a compiled language
62+
# ✏️ If the Autobuild fails above, remove it and uncomment the following three lines
63+
# and modify them (or add more) to build your code if your project
64+
# uses a compiled language
6565

66-
#- run: |
67-
# make bootstrap
68-
# make release
66+
#- run: |
67+
# make bootstrap
68+
# make release
6969

70-
- name: Perform CodeQL Analysis
71-
uses: github/codeql-action/analyze@v1
70+
- name: Perform CodeQL Analysis
71+
uses: github/codeql-action/analyze@v1

0 commit comments

Comments
 (0)