Skip to content

Commit 21280ab

Browse files
committed
style: fix lint errors
1 parent 97a029b commit 21280ab

File tree

11 files changed

+29
-7
lines changed

11 files changed

+29
-7
lines changed

br.js

+2
Original file line numberDiff line numberDiff line change
@@ -1 +1,3 @@
1+
'use strict';
2+
13
module.exports = require('./src/angular-input-masks.br');

br.test.js

+4-2
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,11 @@
1-
describe('angular-input-masks-standalone', function () {
1+
'use strict';
2+
3+
describe('angular-input-masks-standalone', function() {
24
var moduleName = require('./br.js');
35

46
beforeEach(angular.mock.module('ui.utils.masks'));
57

6-
it('should export the module name', function () {
8+
it('should export the module name', function() {
79
expect(moduleName).toBe('ui.utils.masks');
810
});
911
});

index.js

+2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
'use strict';
2+
13
var moduleName = require('./src/angular-input-masks.js');
24

35
module.exports = moduleName;

index.test.js

+4-2
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,11 @@
1-
describe('angular-input-masks-standalone', function () {
1+
'use strict';
2+
3+
describe('angular-input-masks-standalone', function() {
24
var moduleName = require('./index.js');
35

46
beforeEach(angular.mock.module('ui.utils.masks'));
57

6-
it('should export the module name', function () {
8+
it('should export the module name', function() {
79
expect(moduleName).toBe('ui.utils.masks');
810
});
911
});

src/br/br-masks.js

+2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
'use strict';
2+
13
var m = angular.module('ui.utils.masks.br', [
24
require('../helpers'),
35
])

src/global/global-masks.js

+2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
'use strict';
2+
13
var m = angular.module('ui.utils.masks.global', [
24
require('../helpers'),
35
])

src/node_modules/mask-factory.js

+2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/node_modules/validators.js

+3-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/us/us-masks.js

+2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
'use strict';
2+
13
var m = angular.module('ui.utils.masks.us', [
24
require('../helpers')
35
])

us.js

+2
Original file line numberDiff line numberDiff line change
@@ -1 +1,3 @@
1+
'use strict';
2+
13
module.exports = require('./src/angular-input-masks.us');

us.test.js

+4-2
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,11 @@
1-
describe('angular-input-masks-standalone', function () {
1+
'use strict';
2+
3+
describe('angular-input-masks-standalone', function() {
24
var moduleName = require('./us.js');
35

46
beforeEach(angular.mock.module('ui.utils.masks'));
57

6-
it('should export the module name', function () {
8+
it('should export the module name', function() {
79
expect(moduleName).toBe('ui.utils.masks');
810
});
911
});

0 commit comments

Comments
 (0)