Skip to content

Commit

Permalink
remove eslint ci
Browse files Browse the repository at this point in the history
  • Loading branch information
inverse committed Sep 2, 2024
1 parent 0601a24 commit 33b856c
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 21 deletions.
21 changes: 0 additions & 21 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,27 +5,6 @@ on:
pull_request:
types: [opened, synchronize]
jobs:
lint-eslint:
name: Run lint:eslint
runs-on: ubuntu-latest
steps:
- name: Checkout the repository
uses: actions/checkout@v4

- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version-file: '.nvmrc'
cache: 'npm'

- name: Install dependencies
run: npm ci

- name: Run lint:eslint
run: |
npm run lint:eslint
env:
CI: true
lint-prettier:
name: Run lint:prettier
runs-on: ubuntu-latest
Expand Down
20 changes: 20 additions & 0 deletions tsconfig.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
{
"compilerOptions": {
"allowSyntheticDefaultImports": true,
"baseUrl": ".",
"module": "ES2020",
"moduleResolution": "Bundler",
"isolatedModules": true,

"jsx": "preserve",

"paths": {
"@/*": ["/index.ts"]
},
"resolveJsonModule": true,
"sourceMap": true,
"strict": true,
"target": "ES2020"
},
"include": ["**/*.ts"]
}

0 comments on commit 33b856c

Please sign in to comment.