Skip to content

Commit c8dda3f

Browse files
committed
[added] HuBoard badge and link
Issue triage, prioritizing and general state tracking support with HuBoard. This should help to coordinate efforts and demonstrate priorities of the core dev team.
1 parent 694b701 commit c8dda3f

File tree

2 files changed

+65
-15
lines changed

2 files changed

+65
-15
lines changed

CONTRIBUTING.md

+20-9
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,11 @@ don't hesitate to jump in.
55

66
## Current Issues
77

8-
Feel free to tackle any currently open
9-
[issue](https://github.com/react-bootstrap/react-bootstrap/issues). The issues
10-
tagged with "help wanted" are especially open.
8+
[![HuBoard][huboard-badge]][huboard]
9+
10+
We use HuBoard to triage issues and prioritize the backlog for the core dev
11+
team. Feel free to tackle any currently open [issue][issues]. The issues tagged
12+
with "help wanted" and especially those high in the backlog are fair game.
1113

1214
## Tests
1315

@@ -17,11 +19,11 @@ All commits that fix bugs or add features need a test.
1719

1820
Please adhere to the current code styling. We have included an `.editorconfig`
1921
at the repo's root to facilitate uniformity regardless of your editor. See the
20-
[editor config site](http://editorconfig.org/) for integration details.
22+
[editor config site][editorconfig] for integration details.
2123

22-
We use [ESLint](http://eslint.org/) for all JavaScript Linting. There should be
23-
no linting errors and no new warnings for new work. You are welcome to configure
24-
your editor to use ESLint or the `npm test` command will run unit tests and the
24+
We use [ESLint][eslint] for all JavaScript Linting. There should be no linting
25+
errors and no new warnings for new work. You are welcome to configure your
26+
editor to use ESLint or the `npm test` command will run unit tests and the
2527
linter.
2628

2729
## Commit Subjects for Public API Changes
@@ -43,10 +45,19 @@ change the public API.
4345
Please include an upgrade path with example code in the commit message. If it
4446
doesn't make sense to do this, then it doesn't make sense to use `[changed]` or
4547
`[removed]` :). For further reading on writing a well formed commit message,
46-
check out these [5 useful tips for a better commit
47-
message](http://robots.thoughtbot.com/5-useful-tips-for-a-better-commit-message)
48+
check out these [5 useful tips for a better commit message][commit-message]
4849

4950
## Docs
5051

5152
Please update the docs with any API changes, the code and docs should always be
5253
in sync.
54+
55+
[huboard-badge]: https://img.shields.io/badge/Hu-Board-7965cc.svg
56+
[huboard]: https://huboard.com/react-bootstrap/react-bootstrap
57+
58+
[issues]: https://github.com/react-bootstrap/react-bootstrap/issues
59+
60+
[editorconfig]: http://editorconfig.org
61+
[eslint]: http://eslint.org
62+
[commit-message]: http://robots.thoughtbot.com/5-useful-tips-for-a-better-commit-message
63+

README.md

+45-6
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,22 @@
11
# react-bootstrap
22

3-
[Bootstrap 3](http://getbootstrap.com) components built with [React](http://facebook.github.io/react/)
3+
[Bootstrap 3][bootstrap] components built with [React][react]
44

5-
[![Build Status](https://travis-ci.org/react-bootstrap/react-bootstrap.svg)](https://travis-ci.org/react-bootstrap/react-bootstrap) [![NPM version](https://badge.fury.io/js/react-bootstrap.svg)](http://badge.fury.io/js/react-bootstrap) [![Bower version](https://badge.fury.io/bo/react-bootstrap.svg)](http://badge.fury.io/bo/react-bootstrap) [![Gitter](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/react-bootstrap/react-bootstrap?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)
5+
[![Build Status][build-badge]][build]
6+
[![NPM version][npm-badge]][npm]
7+
[![Bower version][bower-badge]][bower]
8+
[![HuBoard][huboard-badge]][huboard]
9+
[![Gitter][gitter-badge]][gitter]
610

7-
[![Dependency Status](https://david-dm.org/react-bootstrap/react-bootstrap.svg)](https://david-dm.org/react-bootstrap/react-bootstrap) [![devDependency Status](https://david-dm.org/react-bootstrap/react-bootstrap/dev-status.svg)](https://david-dm.org/react-bootstrap/react-bootstrap#info=devDependencies) [![peerDependency Status](https://david-dm.org/react-bootstrap/react-bootstrap/peer-status.svg)](https://david-dm.org/react-bootstrap/react-bootstrap#info=peerDependencies)
11+
[![Dependency Status][deps-badge]][deps]
12+
[![devDependency Status][dev-deps-badge]][dev-deps]
13+
[![peerDependency Status][peer-deps-badge]][peer-deps]
814

915
Under active development - APIs will change.
1016

1117
## Docs
1218

13-
See the [documentation](http://react-bootstrap.github.io) with live editable examples.
19+
See the [documentation][documentation] with live editable examples.
1420

1521
## Authors
1622

@@ -21,7 +27,7 @@ and many [contributors](https://github.com/react-bootstrap/react-bootstrap/graph
2127

2228
## Related modules
2329

24-
- [react-router-bootstrap](https://github.com/mtscout6/react-router-bootstrap) - Integration with [react-router](https://github.com/rackt/react-router).
30+
- [react-router-bootstrap][react-router-bootstrap] - Integration with [react-router][react-router].
2531

2632
## Local Setup
2733

@@ -34,4 +40,37 @@ and many [contributors](https://github.com/react-bootstrap/react-bootstrap/graph
3440

3541
## Contributions
3642

37-
Yes please! See the [contributing guidelines](https://github.com/react-bootstrap/react-bootstrap/blob/master/CONTRIBUTING.md) for details.
43+
Yes please! See the [contributing guidelines][contributing] for details.
44+
45+
[bootstrap]: http://getbootstrap.com
46+
[react]: http://facebook.github.io/react/
47+
48+
[documentation]: http://react-bootstrap.github.io
49+
[contributing]: https://github.com/react-bootstrap/react-bootstrap/blob/master/CONTRIBUTING.md
50+
51+
[build-badge]: https://travis-ci.org/react-bootstrap/react-bootstrap.svg
52+
[build]: https://travis-ci.org/react-bootstrap/react-bootstrap
53+
54+
[npm-badge]: https://badge.fury.io/js/react-bootstrap.svg
55+
[npm]: http://badge.fury.io/js/react-bootstrap
56+
57+
[bower-badge]: https://badge.fury.io/bo/react-bootstrap.svg
58+
[bower]: http://badge.fury.io/bo/react-bootstrap
59+
60+
[gitter-badge]: https://badges.gitter.im/Join%20Chat.svg
61+
[gitter]: https://gitter.im/react-bootstrap/react-bootstrap?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge
62+
63+
[deps-badge]: https://david-dm.org/react-bootstrap/react-bootstrap.svg
64+
[deps]: https://david-dm.org/react-bootstrap/react-bootstrap
65+
66+
[dev-deps-badge]: https://david-dm.org/react-bootstrap/react-bootstrap/dev-status.svg
67+
[dev-deps]: https://david-dm.org/react-bootstrap/react-bootstrap#info=devDependencies
68+
69+
[peer-deps-badge]: https://david-dm.org/react-bootstrap/react-bootstrap/peer-status.svg
70+
[peer-deps]: https://david-dm.org/react-bootstrap/react-bootstrap#info=peerDependencies
71+
72+
[react-router-bootstrap]: https://github.com/mtscout6/react-router-bootstrap
73+
[react-router]: https://github.com/rackt/react-router
74+
75+
[huboard-badge]: https://img.shields.io/badge/Hu-Board-7965cc.svg
76+
[huboard]: https://huboard.com/react-bootstrap/react-bootstrap

0 commit comments

Comments
 (0)