Skip to content

Commit d39c6b7

Browse files
committed
chore: Small fixes
1 parent 9bf776b commit d39c6b7

File tree

3 files changed

+13
-8
lines changed

3 files changed

+13
-8
lines changed

.eslintrc

Lines changed: 9 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,12 +7,17 @@
77
"rules": {
88
"no-underscore-dangle": 0,
99
"no-unused-expressions": 0,
10-
"arrow-body-style": 0
10+
"arrow-body-style": 0,
11+
"no-mixed-operators": 0,
12+
"no-restricted-syntax": 0,
13+
"import/prefer-default-export": 0,
14+
"no-lonely-if": 0
1115
},
1216
"env": {
1317
"mocha": true
1418
},
15-
"plugins": [
16-
"flowtype"
17-
]
19+
"globals": {
20+
"Class": true,
21+
"$Shape": true,
22+
}
1823
}

.flowconfig

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,8 @@
55
.*/resources/.*
66
<PROJECT_ROOT>/lib/.*
77
<PROJECT_ROOT>/dist/.*
8+
.*/node_modules/config-chain/test/broken.json
9+
.*/node_modules/npmconf/test/fixtures/package.json
810

911
[include]
1012

@@ -13,6 +15,4 @@
1315
[options]
1416
esproposal.class_instance_fields=enable
1517
suppress_comment= \\(.\\|\n\\)*\\$FlowFixMe
16-
17-
[version]
18-
0.38.0
18+
unsafe.enable_getters_and_setters=true

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
[![travis build](https://img.shields.io/travis/nodkz/graphql-compose-connection.svg)](https://travis-ci.org/nodkz/graphql-compose-connection)
44
[![codecov coverage](https://img.shields.io/codecov/c/github/nodkz/graphql-compose-connection.svg)](https://codecov.io/github/nodkz/graphql-compose-connection)
55
[![](https://img.shields.io/npm/v/graphql-compose-connection.svg)](https://www.npmjs.com/package/graphql-compose-connection)
6-
[![npm](https://img.shields.io/npm/dt/graphql-compose-connection.svg)](https://www.npmjs.com/package/graphql-compose-connection)
6+
[![npm](https://img.shields.io/npm/dt/graphql-compose-connection.svg)](http://www.npmtrends.com/graphql-compose-connection)
77
[![Join the chat at https://gitter.im/graphql-compose/Lobby](https://badges.gitter.im/nodkz/graphql-compose.svg)](https://gitter.im/graphql-compose/Lobby)
88
[![Commitizen friendly](https://img.shields.io/badge/commitizen-friendly-brightgreen.svg)](http://commitizen.github.io/cz-cli/)
99

0 commit comments

Comments
 (0)