Skip to content

Commit

Permalink
Adding testing setup and providing dist builds
Browse files Browse the repository at this point in the history
  • Loading branch information
sghiassy committed Jun 16, 2016
1 parent 1e19ada commit 0d433cf
Show file tree
Hide file tree
Showing 26,404 changed files with 2,563,847 additions and 178 deletions.
The diff you're trying to view is too large. We only load the first 3000 changed files.
11 changes: 11 additions & 0 deletions .editorconfig
@@ -0,0 +1,11 @@
root = true

[*]
indent_style = space
indent_size = 2
charset = utf-8
trim_trailing_whitespace = true
insert_final_newline = true

[*.md]
trim_trailing_whitespace = false
17 changes: 17 additions & 0 deletions .eslintrc
@@ -0,0 +1,17 @@
{
"extends": "airbnb",
"parserOptions":{
"ecmaFeatures": {
"experimentalObjectRestSpread": true
}
},
"rules": {
"eqeqeq": 0,
"import/no-unresolved": 0,
"max-len": 0,
"no-param-reassign": ["error", { "props": false }],
"react/jsx-closing-bracket-location": [1, "after-props"],
"react/prefer-es6-class": 0,
"space-before-function-paren":["error", "never"]
}
}
1 change: 0 additions & 1 deletion .gitignore
Expand Up @@ -25,7 +25,6 @@ Groupon.xcworkspace/xcshareddata/Groupon.xccheckout
*.swp

# Other
build*
data_archive*
*.kpf
*.wpr
Expand Down
2 changes: 2 additions & 0 deletions .npmignore
@@ -1,2 +1,4 @@
example
README.md
lib
node_modules
8 changes: 8 additions & 0 deletions .travis.yml
@@ -0,0 +1,8 @@
language: node_js
node_js:
- "5"
- "5.10"
- "6"
build:
run:
- npm test
7 changes: 7 additions & 0 deletions babelrc
@@ -0,0 +1,7 @@
{
"presets": [
"react",
"es2015",
"stage-2"
]
}
262 changes: 262 additions & 0 deletions dist/SGListView.js

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

0 comments on commit 0d433cf

Please sign in to comment.