Skip to content

Commit 483be7a

Browse files
committed
eslint upgrade
1 parent 140ca1e commit 483be7a

File tree

5 files changed

+15
-4
lines changed

5 files changed

+15
-4
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@ See [contributing guide](.github/CONTRIBUTING.md)
108108

109109
| Date | Version | Description |
110110
| ----------- | ------- | ----------- |
111-
| 2016-07-06 | v0.0.83 | Maintenance |
111+
| 2016-07-18 | v0.0.84 | Maintenance |
112112
| 2016-06-14 | v0.0.78 | Published via NPM (in addition to bower) |
113113
| 2016-06-14 | v0.0.77 | Maintenance |
114114
| 2016-03-08 | v0.0.65 | Added webNotification.permissionGranted attribute |

bower.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "angular-web-notification",
3-
"version": "0.0.83",
3+
"version": "0.0.84",
44
"description": "AngularJS service for displaying web notifications.",
55
"authors": [
66
"Sagie Gur-Ari <sagiegurari@gmail.com>"

docs/CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
| Date | Version | Description |
22
| ----------- | ------- | ----------- |
3-
| 2016-07-06 | v0.0.83 | Maintenance |
3+
| 2016-07-18 | v0.0.84 | Maintenance |
44
| 2016-06-14 | v0.0.78 | Published via NPM (in addition to bower) |
55
| 2016-06-14 | v0.0.77 | Maintenance |
66
| 2016-03-08 | v0.0.65 | Added webNotification.permissionGranted attribute |

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "angular-web-notification",
3-
"version": "0.0.83",
3+
"version": "0.0.84",
44
"description": "AngularJS service for displaying web notifications.",
55
"author": {
66
"name": "Sagie Gur-Ari",

project/config/eslintrc-common.json

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -137,6 +137,7 @@
137137
],
138138
"no-lone-blocks": "error",
139139
"no-lonely-if": "error",
140+
"no-mixed-operators": "error",
140141
"no-loop-func": "error",
141142
"no-magic-numbers": "off",
142143
"no-mixed-requires": "error",
@@ -208,6 +209,12 @@
208209
"no-void": "error",
209210
"no-warning-comments": "error",
210211
"no-whitespace-before-property": "error",
212+
"object-curly-newline": [
213+
"error",
214+
{
215+
"minProperties": 1
216+
}
217+
],
211218
"object-curly-spacing": [
212219
"error",
213220
"always"
@@ -233,6 +240,10 @@
233240
"radix": "error",
234241
"require-jsdoc": "error",
235242
"require-yield": "error",
243+
"rest-spread-spacing": [
244+
"error",
245+
"never"
246+
],
236247
"semi": "error",
237248
"semi-spacing": [
238249
"error",

0 commit comments

Comments
 (0)