Skip to content

Commit bc268d3

Browse files
committed
Fixed jscs nags
1 parent e208425 commit bc268d3

4 files changed

Lines changed: 6 additions & 6 deletions

File tree

config/grunt/addtextdomain.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
module.exports = {
33
options: {
44
textdomain: '<%= pkg.theme.textdomain %>',
5-
updateDomains: ['all']
5+
updateDomains: [ 'all' ]
66
},
77
php: {
88
files: {

config/grunt/imagemin.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ module.exports = {
55
{
66
expand: true,
77
cwd: '<%= paths.authorAssets %>images/',
8-
src: ['*.*'],
8+
src: [ '*.*' ],
99
dest: '<%= paths.tmp %>images/'
1010
}
1111
]
@@ -15,13 +15,13 @@ module.exports = {
1515
{
1616
expand: true,
1717
cwd: '<%= paths.authorAssets %>icons/',
18-
src: ['**/*.*'],
18+
src: [ '**/*.*' ],
1919
dest: '<%= paths.tmp %>icons/'
2020
},
2121
{
2222
expand: true,
2323
cwd: '<%= paths.bower %>icons/',
24-
src: ['**/*.svg'],
24+
src: [ '**/*.svg' ],
2525
dest: '<%= paths.tmp %>icons/'
2626
}
2727
]

config/grunt/potomo.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ module.exports = {
55
{
66
expand: true,
77
cwd: '<%= paths.assets %><%= paths.languages %>',
8-
src: ['*.po'],
8+
src: [ '*.po' ],
99
dest: '<%= paths.theme%><%= paths.languages %>',
1010
ext: '.mo',
1111
nonull: true,

config/grunt/wpcss.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,6 @@ module.exports = {
55
},
66
css: {
77
expand: true,
8-
src: ['<%= paths.tmp %>style.css']
8+
src: [ '<%= paths.tmp %>style.css' ]
99
}
1010
};

0 commit comments

Comments
 (0)