Skip to content

Commit

Permalink
chore(deps): update dependency typescript to v5 (#176)
Browse files Browse the repository at this point in the history
Remove deprecated `importsNotUsedAsValues` option, replace
with linting.
---------

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: Trevor Scheer <[email protected]>
  • Loading branch information
renovate[bot] and trevor-scheer authored Mar 29, 2023
1 parent 5b7dc34 commit ee270a8
Show file tree
Hide file tree
Showing 7 changed files with 2,020 additions and 279 deletions.
8 changes: 8 additions & 0 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,13 @@ jobs:
- setup-node
- run: npm run prettier-check

Lint:
docker:
- image: cimg/base:stable
steps:
- setup-node
- run: npm run lint

Spell Check:
docker:
- image: cimg/base:stable
Expand All @@ -71,4 +78,5 @@ workflows:
- "16"
- "18"
- Prettier
- Lint
- Spell Check
8 changes: 8 additions & 0 deletions .eslintrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
{
"root": true,
"parser": "@typescript-eslint/parser",
"plugins": ["@typescript-eslint"],
"rules": {
"@typescript-eslint/consistent-type-imports": "error"
}
}
Loading

0 comments on commit ee270a8

Please sign in to comment.