Skip to content

Commit 3d5541e

Browse files
committed
update grunt and jslint options
1 parent ec4a348 commit 3d5541e

File tree

6 files changed

+9
-17
lines changed

6 files changed

+9
-17
lines changed

.jshintrc

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,6 @@
2828
"browser": true,
2929
"globals": {
3030
"angular": true,
31-
"notify": true,
32-
"module": true,
33-
"require": true
31+
"notify": true
3432
}
3533
}

Gruntfile.js

Lines changed: 3 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
1-
'use strict';
1+
/*global module: false, require: false */
22

33
module.exports = function (grunt) {
4+
'use strict';
5+
46
require('time-grunt')(grunt);
57
require('load-grunt-tasks')(grunt);
68

@@ -87,17 +89,6 @@ module.exports = function (grunt) {
8789
}
8890
},
8991

90-
blanket: {
91-
full: {
92-
options: {
93-
'data-cover-only': 'angular-web-notification.js'
94-
},
95-
files: {
96-
'target/coverage/': ['./']
97-
}
98-
}
99-
},
100-
10192
karma: {
10293
full: {
10394
configFile: 'karma.conf.js',

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ See full docs at: [API Docs](docs/api.md)
7575

7676
| Date | Version | Description |
7777
| ----------- | ------- | ----------- |
78-
| 2015-03-12 | v0.0.13 | Maintenance |
78+
| 2015-03-13 | v0.0.14 | Maintenance |
7979
| 2015-02-16 | v0.0.7 | Automatic unit tests via karma |
8080
| 2015-02-05 | v0.0.5 | Doc changes |
8181
| 2014-12-30 | v0.0.4 | Doc changes |

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.13",
3+
"version": "0.0.14",
44
"authors": [
55
"Sagie Gur-Ari <[email protected]>"
66
],

karma.conf.js

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
/*global module: false */
2+
13
module.exports = function (config) {
24
'use strict';
35

test/spec/angular-web-notification-spec.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
/*global describe: false, assert: false, inject: false, it: false, angular: false, beforeEach: false */
12

23
describe('angular-web-notification', function () {
34
'use strict';

0 commit comments

Comments
 (0)