Skip to content

Commit

Permalink
Merge pull request #14 from PathwayCommons/remake
Browse files Browse the repository at this point in the history
Remake
  • Loading branch information
d2fong authored Mar 21, 2017
2 parents e33f900 + c117c52 commit 5434113
Show file tree
Hide file tree
Showing 33 changed files with 52,009 additions and 14,463 deletions.
3 changes: 3 additions & 0 deletions .babelrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"presets": ["latest"]
}
29 changes: 25 additions & 4 deletions .eslintrc.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,26 @@
module.exports = {
"extends": "eslint-config-airbnb-es5",
"plugins": [
]
};
"env": {
"browser": true,
"commonjs": true,
"es6": true
},
"extends": "eslint:recommended",
"rules": {
"indent": [
"error",
2
],
"linebreak-style": [
"error",
"unix"
],
"quotes": [
"error",
"single"
],
"semi": [
"error",
"always"
]
}
};
3 changes: 0 additions & 3 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,3 @@ node_modules/
test/testenv/testBundle.js
test/testenv/fixtures/*

dist/*.js
dist/index.html
dist/*.map
Loading

0 comments on commit 5434113

Please sign in to comment.