Skip to content

Commit 23bb75d

Browse files
authored
Improve docs (rubengrill#1)
1 parent c9816ca commit 23bb75d

22 files changed

+3271
-205
lines changed

.eslintignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
examples/docs/apolloMock.js
2+
examples/docs/codegenTypedDocuments.d.ts
3+
examples/docs/codegenTypes.ts

.eslintrc

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,19 @@
77
"eslint:recommended",
88
"plugin:@typescript-eslint/eslint-recommended",
99
"plugin:@typescript-eslint/recommended",
10+
"plugin:react/recommended",
1011
"plugin:prettier/recommended"
1112
],
1213
"rules": {
1314
"@typescript-eslint/explicit-function-return-type": "off"
15+
},
16+
"env": {
17+
"node": true,
18+
"jest": true
19+
},
20+
"settings": {
21+
"react": {
22+
"version": "detect"
23+
}
1424
}
1525
}

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,3 @@
11
node_modules
22
lib
3+
coverage

.prettierignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
examples/docs/apolloMock.js
2+
examples/docs/codegenTypedDocuments.d.ts
3+
examples/docs/codegenTypes.ts

0 commit comments

Comments
 (0)