Skip to content

Commit 5d73594

Browse files
committed
revert to config file using new flat config format
1 parent 4708238 commit 5d73594

File tree

90 files changed

+1111
-28479
lines changed

Some content is hidden

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

90 files changed

+1111
-28479
lines changed

.changeset/README.md

Lines changed: 0 additions & 8 deletions
This file was deleted.

.changeset/config.json

Lines changed: 0 additions & 13 deletions
This file was deleted.

.changeset/sweet-mugs-shake.md

Lines changed: 0 additions & 5 deletions
This file was deleted.

.editorconfig

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,16 @@
11
root = true
22

33
[*]
4-
indent_style = space
4+
indent_style = tab
55
indent_size = 2
66
charset = utf-8
77
trim_trailing_whitespace = true
88
insert_final_newline = true
99

1010
[*.md]
11-
trim_trailing_whitespace = false
11+
trim_trailing_whitespace = false
12+
13+
# YAML files cannot have tabs
14+
# @see https://yaml.org/faq.html
15+
[*.yml]
16+
indent_style = space

.eslintignore

Lines changed: 0 additions & 3 deletions
This file was deleted.

.github/workflows/ci.yml

Lines changed: 8 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -7,26 +7,16 @@ concurrency:
77
cancel-in-progress: true
88

99
jobs:
10-
lint:
10+
validate:
1111
runs-on: ubuntu-latest
1212
steps:
13-
- uses: actions/checkout@v4
14-
- name: Use Node.js 18
15-
uses: actions/setup-node@v3
13+
- name: Check out repository code
14+
uses: actions/checkout@v4
15+
- uses: actions/setup-node@v4
1616
with:
17-
node-version: 18
18-
- name: Cache node modules
19-
uses: actions/cache@v3
20-
with:
21-
path: node_modules
22-
key: ${{ runner.OS }}-build-${{ hashFiles('**/package-lock.json') }}
23-
restore-keys: |
24-
${{ runner.OS }}-build-${{ env.cache-name }}-
25-
${{ runner.OS }}-build-
26-
${{ runner.OS }}-
17+
node-version: 'lts/*'
18+
cache: 'npm'
2719
- name: Install Dependencies
28-
run: npm ci && npm link && npm link @cloudfour/eslint-plugin
29-
- name: Run Build
30-
run: npm run build
20+
run: npm ci && npm link && npm link @cloudfour/eslint-config
3121
- name: Run Lint
32-
run: npm run check-lint
22+
run: npm run lint:check

.github/workflows/release.yml

Lines changed: 0 additions & 36 deletions
This file was deleted.

.gitignore

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,2 @@
11
node_modules
2-
/dist/*.js
3-
.vscode/
4-
/fixtures/repos
5-
/tmp-eslint-config
2+
.vscode

.npmrc

Lines changed: 0 additions & 3 deletions
This file was deleted.

.nvmrc

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

0 commit comments

Comments
 (0)