Skip to content

Commit

Permalink
corrected review issues
Browse files Browse the repository at this point in the history
  • Loading branch information
woessmich committed Dec 15, 2020
1 parent 004aaa9 commit e4d85fe
Show file tree
Hide file tree
Showing 8 changed files with 1,677 additions and 1,116 deletions.
45 changes: 15 additions & 30 deletions .eslintrc.json
Original file line number Diff line number Diff line change
@@ -1,35 +1,20 @@
{
"env": {
"es6": true,
"node": true,
"mocha": true
},
"extends": "eslint:recommended",
"rules": {
"indent": [
"error",
4,
{
"SwitchCase": 1
}
],
"no-console": "off",
"no-var": "error",
"prefer-const": "error",
"quotes": [
"error",
"single",
{
"avoidEscape": true,
"allowTemplateLiterals": true
}
],
"semi": [
"error",
"always"
]
"browser": true,
"commonjs": true,
"es2021": true
},
"extends": [
"airbnb-base"
],
"parserOptions": {
"ecmaVersion": 2018
"ecmaVersion": 12
},
"rules": {
"linebreak-style": 0,
"import/no-dynamic-require":0,
"max-len": 0,
"no-use-before-define":0

}
}
}
15 changes: 0 additions & 15 deletions .gitignore

This file was deleted.

2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,8 @@ Further, the adapter provides a selection of useful minimum and maximum values o
The protocol sends a lightning distance of 0 when no lightning was detected. Values of 0 are modified to 999 to avoid the impression that lightning strikes are directly overhead.

## Changelog
### 0.0.10
* (womi) Corrected programming issues from review
### 0.0.9
* (womi) Assigned roles to states; fixes for status 'latest'
### 0.0.8
Expand Down
24 changes: 5 additions & 19 deletions io-package.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,12 @@
{
"common": {
"name": "weatherflow_udp",
"version": "0.0.9",
"version": "0.0.10",
"news": {
"0.0.10": {
"en": "Corrected programming issues from review",
"de": "Korrekturen nach Überprüfung für 'latest'"
},
"0.0.9": {
"en": "Assigned roles to states; fixes for status 'latest'",
"de": "Rollen bei states ergänzt; fixes für status 'latest'"
Expand Down Expand Up @@ -75,24 +79,6 @@
"connectionType": "local",
"dataSource": "push",
"materialize": true,
"materializeTab": true,
"adminTab": {
"singleton": true,
"name": {
"en": "Weatherflow UDP",
"de": "Weatherflow UDP",
"ru": "Weatherflow UDP",
"pt": "Weatherflow UDP",
"nl": "Weatherflow UDP",
"fr": "Weatherflow UDP",
"it": "Weatherflow UDP",
"es": "Weatherflow UDP",
"pl": "Weatherflow UDP",
"zh-cn": "Weatherflow UDP"
},
"link": "",
"fa-icon": "info"
},
"supportCustoms": false,
"dependencies": [
{
Expand Down
274 changes: 137 additions & 137 deletions lib/messages.js

Large diffs are not rendered by default.

Loading

0 comments on commit e4d85fe

Please sign in to comment.