Skip to content

Commit

Permalink
Hybrid element (#68)
Browse files Browse the repository at this point in the history
Hybrid Polymer element
  • Loading branch information
megheaiulian authored and plequang committed Oct 25, 2017
1 parent 0c6bdc2 commit cb698e1
Show file tree
Hide file tree
Showing 30 changed files with 31,425 additions and 1,149 deletions.
3 changes: 3 additions & 0 deletions .codeclimate.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
engines:
eslint:
enabled: true
channel: "eslint-4"
checks:
complexity:
enabled: false
Expand All @@ -19,6 +20,8 @@ engines:

fixme:
enabled: true
exclude_paths:
- "analysis.json"

ratings:
paths:
Expand Down
3 changes: 3 additions & 0 deletions .editorconfig
Original file line number Diff line number Diff line change
Expand Up @@ -11,3 +11,6 @@ insert_final_newline = true

[*.yml]
indent_style = space

[*.md]
trim_trailing_whitespace = false
1 change: 1 addition & 0 deletions .eslintignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
/bower_components-1.x/*
3 changes: 3 additions & 0 deletions .eslintrc.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,9 @@
"WeakMap": false,
"moment": false
},
"parserOptions": {
"ecmaVersion": 6
},
"plugins": [
"html"
],
Expand Down
4 changes: 3 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
bower_components/
bower_components-1.x/
bower-1.x.json
node_modules/
debug.log
.eslintcache
.DS_Store
.DS_Store
13 changes: 7 additions & 6 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,14 +12,15 @@ addons:
cache:
yarn: true
directories:
- node_modules
- bower_components
- .eslintcache
- $HOME/.cache/bower
- node_modules
- bower_components
- bower_components-1.x
- ".eslintcache"
- "$HOME/.cache/bower"
before_script:
- yarn run lint
- yarn run lint
script:
- xvfb-run yarn test
- xvfb-run yarn test
notifications:
slack:
secure: pcg5FvPJohl11ppMWa1J9MwW6XzYUcksocD6vwLqQ+wLn0VmwJcUi1t0Rs68htKBuuNN4ht7OJ0n12okSrctLATCwyF6cII8AhbhDV0vb+JLjrZS45y9s2nnLS3zFmwWdL6aMnjWWp8ZOvtcNoAcDZmsWRl1ZLDljU75PcFnTjsctMBptMsWvIZqgogrzC2ZZnHGoTeN3l8mXTRUs6owb1p0mjhoxKyUkp9X0yNz4nr48addhj+wDpOljSHEqfpRU3hw1RQmQUxJanv1f8CVUmgZlg1iIpTJoP9yC87GybZdowtYvkG9FpUePzao2IuvsKRwMmKpKLJrD8pt3wGo/ASV2v7tAfD5ILioDcfy3IO+l4ytWK+02w6H1/NO6hGZvapgApYqGYZs3TobiO4+P2UJL4AdNaSNv6LGMB0hlOZyCho1lrFGVI8zk08oRLeQUXGZspJlioLnlH6r0cRGwYLeNowg5bDF3CYq9lFJ/1ckI/6j4+8SumTlRfnvJGq26ckXSvxGtlaM9IojtPoiTqs4stfeNVXggeXHtwJXSZHiXpKVd+iH7W7rnzBQtHYkfkzHEliIDFfSimj47UfSIMa1NoROelvWrx/e70sXOFUlDvIuIEy75FQ47LYaIkuQGrYVofe+1bBURtZpNPUbReti2gEdAIV177QYCKkNJ5o=
12 changes: 6 additions & 6 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"eslint.autoFixOnSave": true,
"eslint.validate": [
{ "language": "javascript", "autoFix": true },
{ "language": "html", "autoFix": true }
]
}
"eslint.autoFixOnSave": true,
"eslint.validate": [
{ "language": "javascript", "autoFix": true },
{ "language": "html", "autoFix": true }
]
}
Loading

0 comments on commit cb698e1

Please sign in to comment.