-
Updated
May 27, 2020 - Dart
github-app
Here are 279 public repositories matching this topic...
react-native versin?
When looking at rst files, the menu item to display the unrendered source in upper right corner mentions markdown instead of rst.
Remove dead code
This method doesn't seem like it's in use, so we should probably remove it?
-
Updated
Jan 19, 2020 - JavaScript
Maven
Exposing category name as a "Change Template" variable would be useful for generating change logs in this format:
- ADDED: X (#100)
- ADDED: Y (#101)
- FIXED: Z (#99)
Relevant documentation:
Variable Description $CATEGORYThe category title of the pull request, e.g. Features.
As far as I know you can't do that with Replacers, as you only have one cat
PRs marked as draft (https://github.blog/2019-02-14-introducing-draft-pull-requests/) should be ignored by the stale bot by default, or a settings should allow the bot to ignore them.
Hi,
It will be great if it's allowed to customize the commit message of imgbot, so that we can use conventional commit format without failing commitlint check.
-
Updated
May 20, 2020 - JavaScript
Code Smells
Landscape currently detects 43 code smells here
https://landscape.io/github/OrkoHunter/pep8speaks/17/messages/smell
Not all, but most of them should be easy to fix.
-
Updated
May 26, 2020 - JavaScript
Instead of appearing over/directly under the graph, the scrollbar appears on the bottom of the view as seen in the screenshot. Not sure if this also happens on Android.
We should probably deprecate the workaround token feature as well and then eventually remove it. Should simplify the code a decent amount, since there's logic to specifically detect if push restrictions are enabled.
Originally posted by @bluekeyes in palantir/bulldozer#171 (comment)
Now, typot checks doc file only (.md, .rst). So it will be good to check the comment in source file.
-
Updated
May 6, 2020 - TypeScript
-
Updated
Dec 31, 2019 - Swift
E.g. if you use the GitHub issue templates and automatically apply "bug" or "enhancement", then the bot should not (try to) relabel it.
Humans come before bots!
If the human says this is a bug, the bot should obey. (second robot law)
On the project-bot github repository home page, the example animation at the bottom of the page does not follow the syntax rules for formatting a card. new.issue should be new_issue and arguments should be surrounded by '**'.
This is confusing, and wastes time trying to debug cards that aren't working.
-
Updated
Jan 15, 2018 - JavaScript
What happened
A common workflow:
-
Updated
Sep 11, 2019 - Swift
-
Updated
May 24, 2020 - JavaScript
I believe I've found a case where the DCO enforcement, when there is one unsigned commit, but it is not the last one.
To reproduce, I branch my repo, add a file and commit it unsigned:
git checkout -b dco-test
<Create bugdemo.txt>
git add bugdemo.txt
git commit -a -m "Unsigned commit"
git push --set-upstream origin dco-test
Then I made a change to the bugdemo.txt file and ran:
-
Updated
Oct 11, 2019 - JavaScript
-
Updated
Mar 14, 2020 - TypeScript
-
Updated
Apr 21, 2020 - TypeScript
Improve this page
Add a description, image, and links to the github-app topic page so that developers can more easily learn about it.
Add this topic to your repo
To associate your repository with the github-app topic, visit your repo's landing page and select "manage topics."


npm uninstall -g react-native
npm install -g react-native-cli
命令之后,执行react-native run-android/ios仍然会出现
Looks like you installed react-native globally, maybe you meant react-native-cli?
To fix the issue, run:
npm uninstall -g react-native
npm install -g react-native-cli