Skip to content

Commit ae56cce

Browse files
committed
Initial commit
0 parents  commit ae56cce

File tree

13 files changed

+838
-0
lines changed

13 files changed

+838
-0
lines changed

.eslintrc

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
{
2+
"extends": "@sapphire"
3+
}

.gitattributes

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
# Auto detect text files and perform LF normalization
2+
* text=auto

.github/CODEOWNERS

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
* @KagChi

.github/renovate.json

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
{
2+
"extends": [
3+
"config:base"
4+
]
5+
}

.github/workflows/build.yml

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
name: build
2+
3+
on:
4+
push:
5+
branches:
6+
- "**"
7+
pull_request:
8+
branches:
9+
- "**"
10+
11+
jobs:
12+
compile:
13+
14+
runs-on: ubuntu-latest
15+
16+
strategy:
17+
matrix:
18+
node-version: [16.x]
19+
20+
steps:
21+
- uses: actions/checkout@v2
22+
- name: Use Node.js ${{ matrix.node-version }}
23+
uses: actions/setup-node@v2
24+
with:
25+
node-version: ${{ matrix.node-version }}
26+
- run: npm install
27+
- run: npm run build

.github/workflows/lint.yml

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
name: eslint-check
2+
3+
on:
4+
push:
5+
branches:
6+
- "**"
7+
pull_request:
8+
branches:
9+
- "**"
10+
11+
jobs:
12+
eslint:
13+
14+
runs-on: ubuntu-latest
15+
16+
strategy:
17+
matrix:
18+
node-version: [16.x]
19+
20+
steps:
21+
- uses: actions/checkout@v2
22+
- name: Use Node.js ${{ matrix.node-version }}
23+
uses: actions/setup-node@v2
24+
with:
25+
node-version: ${{ matrix.node-version }}
26+
- run: npm install
27+
- run: npm run lint

.gitignore

Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
# Ignore a blackhole and the folder for development
2+
node_modules/
3+
.vs/
4+
.idea/
5+
*.iml
6+
coverage/
7+
docs/
8+
9+
# Yarn files
10+
.yarn/install-state.gz
11+
.yarn/build-state.yml
12+
13+
# Ignore tsc dist folder
14+
dist/
15+
16+
# Ignore JavaScript files
17+
**/*.js
18+
**/*.mjs
19+
**/*.js.map
20+
**/*.d.ts
21+
!src/**/*.d.ts
22+
**/*.tsbuildinfo
23+
!jest.config.ts
24+
25+
# Ignore heapsnapshot and log files
26+
*.heapsnapshot
27+
*.log
28+
29+
# Ignore package locks
30+
package-lock.json
31+
32+
# Ignore the GH cli downloaded by workflows
33+
gh
34+
35+
# Ignore the "wiki" folder so we can checkout the wiki inside the same folder
36+
wiki/

0 commit comments

Comments
 (0)