Skip to content

Commit

Permalink
es6 support
Browse files Browse the repository at this point in the history
  • Loading branch information
ninjasort committed May 22, 2015
1 parent beeff09 commit af9861f
Show file tree
Hide file tree
Showing 11 changed files with 1,261 additions and 745 deletions.
3 changes: 3 additions & 0 deletions .babelrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"optional": ["es7.classProperties"]
}
29 changes: 29 additions & 0 deletions .eslintrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
{
"parser": "babel-eslint",
"ecmaFeatures": {
"arrowFunctions": true,
"templateStrings": true,
"classes": true,
"modules": true,
"restParams": true,
"jsx": true
},

"env": {
"browser": true,
"node": true,
"es6": true
},

"globals": {
"BROWSER": true
},

"rules": {
"quotes": 0,
"no-trailing-spaces": 0,
"no-unused-vars": 0,
"no-alert": 0,
"strict": 0
}
}
1 change: 1 addition & 0 deletions .jshintrc
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@
"unused": true,
"boss": true,
"eqnull": true,
"expr": true,
"node": true,
"browser": true,
"devel": true,
Expand Down
2 changes: 1 addition & 1 deletion dist/css/react-star-rating.min.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1,095 changes: 751 additions & 344 deletions dist/demo/bundle.js

Large diffs are not rendered by default.

Loading

0 comments on commit af9861f

Please sign in to comment.