Skip to content

Commit

Permalink
Update 'typescript-eslint/utils' to dependency (#93)
Browse files Browse the repository at this point in the history
* fix: put 'typescript-eslint/utils' into 'dependencies' from 'devDependencies'

* doc: modify  'Incorrect' code sample
  • Loading branch information
haifeng-li-at-salesforce authored Dec 4, 2024
1 parent bf87da8 commit ac741bb
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,8 @@
"/dist"
],
"dependencies": {
"@graphql-eslint/eslint-plugin": "^3.20.1"
"@graphql-eslint/eslint-plugin": "^3.20.1",
"@typescript-eslint/utils": "^7.8.0"
},
"devDependencies": {
"@commitlint/cli": "^19.5.0",
Expand All @@ -76,7 +77,6 @@
"@typescript-eslint/eslint-plugin": "^7.8.0",
"@typescript-eslint/parser": "^7.18.0",
"@typescript-eslint/rule-tester": "^7.8.0",
"@typescript-eslint/utils": "^7.8.0",
"conventional-changelog-conventionalcommits": "^8.0.0",
"eslint": "^8.57.0",
"eslint-plugin-eslint-plugin": "^6.3.1",
Expand Down
2 changes: 1 addition & 1 deletion src/rules/graphql/no-more-than-100-fields.ts
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ export const rule: GraphQLESLintRule = {
query OpportunityExample {
uiapi {
query {
Opportunity {
Opportunity(first: 201) {
edges {
node {
Id
Expand Down

0 comments on commit ac741bb

Please sign in to comment.