Skip to content

Commit

Permalink
Merge pull request #60 from serverless-seoul/eslint
Browse files Browse the repository at this point in the history
TSLint -> Eslint
  • Loading branch information
breath103 authored Dec 19, 2023
2 parents 35e7f10 + 6e24feb commit 21d1a3f
Show file tree
Hide file tree
Showing 13 changed files with 903 additions and 26 deletions.
10 changes: 10 additions & 0 deletions .eslintrc.cjs
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
/* eslint-env node */
module.exports = {
extends: ['eslint:recommended', 'plugin:@typescript-eslint/recommended'],
parser: '@typescript-eslint/parser',
plugins: ['@typescript-eslint'],
root: true,
rules: {
"@typescript-eslint/no-explicit-any": "off"
}
};
4 changes: 2 additions & 2 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@ jobs:
- uses: actions/checkout@v1
- name: Prepare
run: npm ci
# - name: Lint
# run: npm run lint
- name: Lint
run: npm run lint
- name: Test
run: npm test
- name: Publish
Expand Down
Loading

0 comments on commit 21d1a3f

Please sign in to comment.