Skip to content

Commit 98f83f5

Browse files
committed
Merge branch 'master' into pr457
Conflicts: src/Carousel.js
2 parents 5118b42 + 721aacc commit 98f83f5

283 files changed

Lines changed: 4543 additions & 27538 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.editorconfig

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
# EditorConfig is awesome: http://EditorConfig.org
2+
3+
# top-most EditorConfig file
4+
root = true
5+
6+
# Unix-style newlines with a newline ending every file
7+
[*]
8+
end_of_line = lf
9+
insert_final_newline = true
10+
11+
[*.js]
12+
charset = utf-8
13+
indent_style = space
14+
indent_size = 2
15+
16+
[{package.json,.travis.yml}]
17+
indent_style = space
18+
indent_size = 2

.eslintrc

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
{
2+
"env": {
3+
"browser": true,
4+
"node": true
5+
},
6+
"ecmaFeatures": {
7+
"jsx": true
8+
},
9+
"parser": "babel-eslint",
10+
"plugins": [
11+
"react"
12+
],
13+
"rules": {
14+
"comma-spacing": 1,
15+
"key-spacing": 0,
16+
"no-underscore-dangle": 0,
17+
"no-unused-vars": [1, { "vars": "all", "args": "none" }],
18+
"no-undef": 1,
19+
"no-var": 2,
20+
"quotes": [1, "single", "avoid-escape"],
21+
"react/display-name": 0,
22+
"react/jsx-uses-react": 1,
23+
"react/no-did-mount-set-state": 1,
24+
"react/no-did-update-set-state": 1,
25+
"react/no-multi-comp": 1,
26+
"react/prop-types": 1,
27+
"react/react-in-jsx-scope": 1,
28+
"react/self-closing-comp": 1,
29+
"react/wrap-multilines": 1,
30+
"strict": 0
31+
}
32+
}

.gitignore

Lines changed: 8 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,14 @@
11
*~
2-
node_modules
32
.DS_Store
43
npm-debug.log
5-
test_bundle.js
6-
test-built/*
7-
.idea
8-
transpiled/*
9-
docs/*.html
10-
docs/assets/bundle.js
11-
cjs/*
12-
amd/*
4+
node_modules
5+
amd/
6+
!tools/amd/
7+
lib/
8+
!tools/lib/
9+
dist/
10+
!tools/dist/
11+
docs-built/
1312
ie8/bundle.js
14-
lib/*
1513
tmp-bower-repo/
1614
tmp-docs-repo/

.jshintrc

Lines changed: 0 additions & 15 deletions
This file was deleted.

.npmignore

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
node_modules/
22
docs/
3+
docs-built/
34
test-built/
45
test/
56
tools/
67
.gitignore
78
.travis.yml
8-
Gruntfile.js
9-
karma.ci.js
10-
karma.dev.js
11-
test_bundle.js
9+
karma.conf.js
10+
tmp-docs-repo/
11+
tmp-bower-repo/

.travis.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,3 +2,5 @@ sudo: false
22
language: node_js
33
node_js:
44
- "0.10"
5+
- "0.12"
6+
- "iojs"

CHANGELOG.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,15 @@
1+
v0.19.1 - Thu, 26 Mar 2015 19:37:01 GMT
2+
---------------------------------------
3+
4+
- [2b7d235](../../commit/2b7d235) [fixed] Re-added CollapsableNav to public API
5+
6+
7+
v0.19.0 - Wed, 25 Mar 2015 21:25:57 GMT
8+
---------------------------------------
9+
10+
- [98ee978](../../commit/98ee978) [changed] Source to ES6 using Babel and Webpack
11+
12+
113
v0.18.0 - Tue, 24 Mar 2015 02:56:15 GMT
214
---------------------------------------
315

CONTRIBUTING.md

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,27 @@
33
We welcome community support with both pull requests and reporting bugs. Please
44
don't hesitate to jump in.
55

6+
## Current Issues
7+
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.
11+
612
## Tests
713

814
All commits that fix bugs or add features need a test.
915

16+
## Code Style
17+
18+
Please adhere to the current code styling. We have included an `.editorconfig`
19+
at the repo's root to facilitate uniformity regardless of your editor. See the
20+
[editor config site](http://editorconfig.org/) for integration details.
21+
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
25+
linter.
26+
1027
## Commit Subjects for Public API Changes
1128

1229
If your patch **changes the API or fixes a bug** please use one of the following

Gruntfile.js

Lines changed: 0 additions & 217 deletions
This file was deleted.

0 commit comments

Comments
 (0)