Skip to content

Commit

Permalink
Prettier
Browse files Browse the repository at this point in the history
  • Loading branch information
dulnan committed Oct 1, 2023
1 parent c501410 commit 7633086
Show file tree
Hide file tree
Showing 6 changed files with 23 additions and 28 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/node.js.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@ name: Test

on:
push:
branches: [ "main", "feature/nuxt3-rewrite" ]
branches: ['main', 'feature/nuxt3-rewrite']
pull_request:
branches: [ "main", "feature/nuxt3-rewrite" ]
branches: ['main', 'feature/nuxt3-rewrite']

jobs:
build:
Expand Down
1 change: 0 additions & 1 deletion apollo/src/data.json
Original file line number Diff line number Diff line change
Expand Up @@ -320,4 +320,3 @@
"dateOfBirth": "1975-12-04"
}
]

24 changes: 9 additions & 15 deletions cypress/tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,16 +1,10 @@
{
"compilerOptions": {
"allowJs": true,
"baseUrl": "../node_modules",
"types": [
"cypress"
],
"noEmit": true
},
"include": [
"**/*.*"
],
"exclude": [
"../node_modules/**"
]
}
"compilerOptions": {
"allowJs": true,
"baseUrl": "../node_modules",
"types": ["cypress"],
"noEmit": true
},
"include": ["**/*.*"],
"exclude": ["../node_modules/**"]
}
4 changes: 3 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,9 @@
"cypress:open": "cypress open --e2e",
"test": "vitest",
"test:ci": "vitest run",
"test:coverage": "vitest run --coverage"
"test:coverage": "vitest run --coverage",
"prettier": "prettier --check .",
"prettier:fix": "prettier --write ."
},
"dependencies": {
"@graphql-codegen/cli": "^5.0.0",
Expand Down
16 changes: 8 additions & 8 deletions playground/pages/user/user.fragment.graphql
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
fragment user on User {
id
firstName
lastName
email
description
dateOfBirth
}
fragment user on User {
id
firstName
lastName
email
description
dateOfBirth
}
2 changes: 1 addition & 1 deletion playground/schema.graphql
Original file line number Diff line number Diff line change
Expand Up @@ -32,4 +32,4 @@ input UserData {
email: String!
firstName: String!
lastName: String!
}
}

0 comments on commit 7633086

Please sign in to comment.