Skip to content

Commit

Permalink
Merge pull request #92 from getlarge/chore-update-dependencies
Browse files Browse the repository at this point in the history
chore: update deps
  • Loading branch information
getlarge authored Sep 13, 2024
2 parents 3ba2fcf + b9046a0 commit fa83d8a
Show file tree
Hide file tree
Showing 10 changed files with 1,731 additions and 2,123 deletions.
20 changes: 8 additions & 12 deletions .eslintrc.json
Original file line number Diff line number Diff line change
Expand Up @@ -82,25 +82,21 @@
"simple-import-sort/imports": [
"error",
{
"groups": [
// Side effects.
["^\\u0000"],
// 3rd party.
["^@?\\w"],
// Anything not fitting group above.
["^"],
// Relative imports.
["^\\."]
]
"groups": [["^\\u0000"], ["^@?\\w"], ["^"], ["^\\."]]
}
],
"simple-import-sort/exports": "error"
"simple-import-sort/exports": "error",
"@typescript-eslint/no-extra-semi": "error",
"no-extra-semi": "off"
}
},
{
"files": ["*.js", "*.jsx"],
"extends": ["plugin:@nx/javascript"],
"rules": {}
"rules": {
"@typescript-eslint/no-extra-semi": "error",
"no-extra-semi": "off"
}
},
{
"files": ["*.spec.ts", "*.spec.tsx", "*.spec.js", "*.spec.jsx"],
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/node.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,7 @@ permissions:
contents: read
pull-requests: write
id-token: write
actions: read

jobs:
setup-and-test:
Expand Down
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -114,3 +114,4 @@ junit.xml
#Nx
.tmp/
.nx/cache
.nx/workspace-data
2 changes: 2 additions & 0 deletions .prettierignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,3 +3,5 @@
/coverage
/.nx/cache
packages/**/CHANGELOG.md

/.nx/workspace-data
Loading

0 comments on commit fa83d8a

Please sign in to comment.