Skip to content
This repository was archived by the owner on Feb 5, 2025. It is now read-only.

Commit 2bea1a2

Browse files
authored
docs: cleanup (#532)
1 parent abad29f commit 2bea1a2

File tree

127 files changed

+1216
-4198
lines changed

Some content is hidden

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

127 files changed

+1216
-4198
lines changed

.eslintignore

-17
This file was deleted.

.eslintrc.js

-180
This file was deleted.

.eslintrc.json

-29
This file was deleted.
File renamed without changes.

.github/workflows/check.yml

+25
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
name: Template Check
2+
on:
3+
push:
4+
branches: ["main"]
5+
pull_request:
6+
branches: ["main"]
7+
jobs:
8+
build:
9+
runs-on: ubuntu-latest
10+
strategy:
11+
matrix:
12+
node-version: [18.x]
13+
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/
14+
steps:
15+
- name: Checkout
16+
uses: actions/checkout@v4
17+
18+
- name: Setup Bun
19+
uses: oven-sh/setup-bun@v2
20+
21+
- name: Template Install dependencies
22+
run: yarn install
23+
24+
- name: Template Check
25+
run: yarn run ci:check

.github/workflows/cli.js.yml

-31
This file was deleted.

.github/workflows/format.yml

+25
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
name: Template Format
2+
on:
3+
push:
4+
branches: ["main"]
5+
pull_request:
6+
branches: ["main"]
7+
jobs:
8+
build:
9+
runs-on: ubuntu-latest
10+
strategy:
11+
matrix:
12+
node-version: [18.x]
13+
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/
14+
steps:
15+
- name: Checkout
16+
uses: actions/checkout@v4
17+
18+
- name: Setup Bun
19+
uses: oven-sh/setup-bun@v2
20+
21+
- name: Template Install dependencies
22+
run: yarn install
23+
24+
- name: Template Format
25+
run: yarn run ci:format

.github/workflows/lint.js.yml

-27
This file was deleted.

.github/workflows/lint.yml

+25
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
name: Template Lint
2+
on:
3+
push:
4+
branches: ["main"]
5+
pull_request:
6+
branches: ["main"]
7+
jobs:
8+
build:
9+
runs-on: ubuntu-latest
10+
strategy:
11+
matrix:
12+
node-version: [18.x]
13+
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/
14+
steps:
15+
- name: Checkout
16+
uses: actions/checkout@v4
17+
18+
- name: Setup Bun
19+
uses: oven-sh/setup-bun@v2
20+
21+
- name: Template Install dependencies
22+
run: yarn install
23+
24+
- name: Template Lint
25+
run: yarn run ci:lint

0 commit comments

Comments
 (0)