Skip to content
This repository has been archived by the owner on Jul 5, 2023. It is now read-only.

Commit

Permalink
code cleanup + code check + preparing HACS
Browse files Browse the repository at this point in the history
  • Loading branch information
peternijssen committed Jun 2, 2019
1 parent 7ce7db7 commit 64242f3
Show file tree
Hide file tree
Showing 9 changed files with 16,373 additions and 153 deletions.
23 changes: 23 additions & 0 deletions .eslintrc.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
extends: airbnb-base
rules:
no-else-return: 0
no-underscore-dangle: 0
nonblock-statement-body-position: 0
curly: 0
no-return-assign: 0
consistent-return: 0
no-mixed-operators: 0
class-methods-use-this: 0
no-nested-ternary: 0
camelcase: 0
no-unused-vars: 0
quotes: 0
comma-dangle: 0
import/no-unresolved: 0
import/prefer-default-export: 0
max-len: 0
array-callback-return: 0
globals:
window: true
Event: true
customElements: true
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
/node_modules/
7 changes: 7 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
language: node_js
node_js:
- "10.16.0"
script:
- npm run lint
- npm run rollup
- npm run babel
Loading

0 comments on commit 64242f3

Please sign in to comment.