-
Notifications
You must be signed in to change notification settings - Fork 18
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
BREAKING_CHANGE: structure of .gqlconfig file changed. closes #3, closes #23, closes #28, closes #45, closes #52, closes #62, closes #99, closes #100, closes #115
- Loading branch information
1 parent
9c37e5a
commit 9756514
Showing
367 changed files
with
32,923 additions
and
12,203 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,9 @@ | ||
{ | ||
presets: [ | ||
["playlyfe", { react: false, asyncAwait: true }], | ||
['playlyfe', { react: false, asyncAwait: true }], | ||
], | ||
plugins: [ | ||
['./scripts/flow-runtime', { annotate: true, assert: true }], | ||
['module-resolver', { root: ['./src'] }], | ||
['./scripts/flow-runtime', { annotate: false, assert: false }] | ||
], | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,22 @@ | ||
/* @flow */ | ||
module.exports = { | ||
plugins: [ | ||
"playlyfe", | ||
], | ||
plugins: ['playlyfe'], | ||
|
||
extends: [ | ||
"plugin:playlyfe/js", | ||
"plugin:playlyfe/flow", | ||
"plugin:playlyfe/testing:jest", | ||
'plugin:playlyfe/js', | ||
'plugin:playlyfe/flowtype', | ||
'plugin:playlyfe/testing:jest', | ||
'plugin:playlyfe/prettier', | ||
], | ||
|
||
env: { | ||
node: true, | ||
}, | ||
|
||
rules: { | ||
'arrow-paren': 'off', | ||
'no-negated-condition': 'off', | ||
'arrow-body-style': 'off', | ||
complexity: 'off', | ||
}, | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,3 +3,4 @@ lib | |
coverage | ||
npm-debug* | ||
yarn-* | ||
.tmp |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
{ | ||
"bracketSpacing": true, | ||
"printWidth": 80, | ||
"singleQuote": true, | ||
"tabWidth": 2, | ||
"trailingComma": "all", | ||
"jsxBracketSameLine": false, | ||
"parser": "babylon" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
save-prefix false | ||
save-prefix "" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
# .gqlconfig migration | ||
|
||
# api migration |
Oops, something went wrong.