Skip to content

Commit af010a6

Browse files
committedJun 17, 2024·
Fix eslint errors in Gruntfile.
1 parent ca63658 commit af010a6

File tree

1 file changed

+77
-93
lines changed

1 file changed

+77
-93
lines changed
 

‎Gruntfile.js

+77-93
Original file line numberDiff line numberDiff line change
@@ -1,57 +1,56 @@
11
/*jshint node:true */
2-
module.exports = function( grunt ) {
2+
module.exports = function (grunt) {
33
'use strict';
4-
4+
55
const sass = require('sass');
66

77
const isProduction = process.env.NODE_ENV === 'production';
88
const mode = isProduction ? 'production' : 'development';
99
const makeSourceMaps = mode === 'development';
10-
11-
grunt.initConfig({
1210

11+
grunt.initConfig({
1312
// Gets the package vars
14-
pkg: grunt.file.readJSON( 'package.json' ),
13+
pkg: grunt.file.readJSON('package.json'),
1514

1615
// Setting folder templates
1716
dirs: {
1817
css: 'assets/css',
1918
fonts: 'assets/fonts',
2019
images: 'assets/images',
21-
js: 'assets/js'
20+
js: 'assets/js',
2221
},
2322

2423
// Compile all .scss files.
2524
sass: {
2625
compile: {
2726
options: {
2827
sourceMap: makeSourceMaps,
29-
implementation: sass
28+
implementation: sass,
3029
},
31-
files: [{
32-
expand: true,
33-
cwd: '<%= dirs.css %>/',
34-
src: ['**/*.scss'],
35-
dest: '<%= dirs.css %>/',
36-
ext: '.min.css'
37-
}]
38-
}
30+
files: [
31+
{
32+
expand: true,
33+
cwd: '<%= dirs.css %>/',
34+
src: ['**/*.scss'],
35+
dest: '<%= dirs.css %>/',
36+
ext: '.min.css',
37+
},
38+
],
39+
},
3940
},
4041

4142
// Minify all .css files.
4243
cssmin: {
4344
options: {
44-
sourceMap: makeSourceMaps
45+
sourceMap: makeSourceMaps,
4546
},
4647
minify: {
4748
expand: true,
4849
cwd: '<%= dirs.css %>/',
49-
src: [
50-
'**/*.css',
51-
],
50+
src: ['**/*.css'],
5251
dest: '<%= dirs.css %>/',
53-
ext: '.min.css'
54-
}
52+
ext: '.min.css',
53+
},
5554
},
5655

5756
// Transpile ES6 to ES5
@@ -72,49 +71,49 @@ module.exports = function( grunt ) {
7271
],
7372
},
7473
dist: {
75-
files: [{
76-
expand: true,
77-
cwd: '<%= dirs.js %>/',
78-
src: [
79-
'**/*.js',
80-
],
81-
dest: '<%= dirs.js %>/',
82-
ext: '.min.js'
83-
}]
84-
}
74+
files: [
75+
{
76+
expand: true,
77+
cwd: '<%= dirs.js %>/',
78+
src: ['**/*.js'],
79+
dest: '<%= dirs.js %>/',
80+
ext: '.min.js',
81+
},
82+
],
83+
},
8584
},
8685

8786
// Watch changes for assets
8887
watch: {
8988
js: {
9089
files: [
9190
'<%= dirs.js %>/**/*.js',
92-
'!<%= dirs.js %>/**/*.min.js'
91+
'!<%= dirs.js %>/**/*.min.js',
9392
],
94-
tasks: ['babel']
93+
tasks: ['babel'],
9594
},
9695
sass: {
9796
files: ['<%= dirs.css %>/**/*.scss'],
9897
tasks: ['sass', 'cssmin'],
99-
}
98+
},
10099
},
101100

102101
// Shell scripts
103102
shell: {
104103
options: {
105104
stdout: true,
106-
stderr: true
105+
stderr: true,
107106
},
108107
txpull: {
109108
command: [
110109
'tx pull -a -f', // Transifex download .po files
111-
].join( '&&' )
110+
].join('&&'),
112111
},
113112
txpush: {
114113
command: [
115-
'tx push -s' // Transifex - send .pot file
116-
].join( '&&' )
117-
}
114+
'tx push -s', // Transifex - send .pot file
115+
].join('&&'),
116+
},
118117
},
119118

120119
// Generate POT files.
@@ -123,25 +122,22 @@ module.exports = function( grunt ) {
123122
type: 'wp-plugin',
124123
domainPath: 'i18n/languages',
125124
potHeaders: {
126-
'report-msgid-bugs-to': 'https://wordpress.org/support/plugin/woocommerce-square',
127-
'language-team': 'LANGUAGE <EMAIL@ADDRESS>'
128-
}
125+
'report-msgid-bugs-to':
126+
'https://wordpress.org/support/plugin/woocommerce-square',
127+
'language-team': 'LANGUAGE <EMAIL@ADDRESS>',
128+
},
129129
},
130130
dist: {
131131
options: {
132132
potFilename: 'woocommerce-square.pot',
133-
exclude: [
134-
'apigen/.*',
135-
'tests/.*',
136-
'tmp/.*'
137-
]
138-
}
139-
}
133+
exclude: ['apigen/.*', 'tests/.*', 'tmp/.*'],
134+
},
135+
},
140136
},
141137

142138
// Check textdomain errors.
143139
checktextdomain: {
144-
options:{
140+
options: {
145141
text_domain: 'woocommerce-square',
146142
keywords: [
147143
'__:1,2d',
@@ -157,57 +153,45 @@ module.exports = function( grunt ) {
157153
'_n:1,2,4d',
158154
'_nx:1,2,4c,5d',
159155
'_n_noop:1,2,3d',
160-
'_nx_noop:1,2,3c,4d'
161-
]
156+
'_nx_noop:1,2,3c,4d',
157+
],
162158
},
163159
files: {
164-
src: [
165-
'**/*.php', // Include all files
166-
'!apigen/**', // Exclude apigen/
160+
src: [
161+
'**/*.php', // Include all files
162+
'!apigen/**', // Exclude apigen/
167163
'!node_modules/**', // Exclude node_modules/
168-
'!tests/**', // Exclude tests/
169-
'!vendor/**', // Exclude vendor/
170-
'!tmp/**', // Exclude tmp/
171-
'!test-plugins/**' // Exclude test-plugins/
164+
'!tests/**', // Exclude tests/
165+
'!vendor/**', // Exclude vendor/
166+
'!tmp/**', // Exclude tmp/
167+
'!test-plugins/**', // Exclude test-plugins/
172168
],
173-
expand: true
174-
}
169+
expand: true,
170+
},
175171
},
176172
});
177173

178174
// Load NPM tasks to be used here
179-
grunt.loadNpmTasks( 'grunt-sass' );
180-
grunt.loadNpmTasks( 'grunt-shell' );
181-
grunt.loadNpmTasks( 'grunt-phpcs' );
182-
grunt.loadNpmTasks( 'grunt-rtlcss' );
183-
grunt.loadNpmTasks( 'grunt-postcss' );
184-
grunt.loadNpmTasks( 'grunt-stylelint' );
185-
grunt.loadNpmTasks( 'grunt-wp-i18n' );
186-
grunt.loadNpmTasks( 'grunt-checktextdomain' );
187-
grunt.loadNpmTasks( 'grunt-babel' );
188-
grunt.loadNpmTasks( 'grunt-contrib-cssmin' );
189-
grunt.loadNpmTasks( 'grunt-contrib-concat' );
190-
grunt.loadNpmTasks( 'grunt-contrib-watch' );
191-
grunt.loadNpmTasks( 'grunt-contrib-clean' );
175+
grunt.loadNpmTasks('grunt-sass');
176+
grunt.loadNpmTasks('grunt-shell');
177+
grunt.loadNpmTasks('grunt-phpcs');
178+
grunt.loadNpmTasks('grunt-rtlcss');
179+
grunt.loadNpmTasks('grunt-postcss');
180+
grunt.loadNpmTasks('grunt-stylelint');
181+
grunt.loadNpmTasks('grunt-wp-i18n');
182+
grunt.loadNpmTasks('grunt-checktextdomain');
183+
grunt.loadNpmTasks('grunt-babel');
184+
grunt.loadNpmTasks('grunt-contrib-cssmin');
185+
grunt.loadNpmTasks('grunt-contrib-concat');
186+
grunt.loadNpmTasks('grunt-contrib-watch');
187+
grunt.loadNpmTasks('grunt-contrib-clean');
192188

193189
// Register tasks
194-
grunt.registerTask( 'default', [
195-
'css',
196-
'js',
197-
'i18n'
198-
]);
199-
200-
grunt.registerTask( 'js', [
201-
'babel',
202-
]);
203-
204-
grunt.registerTask( 'i18n', [
205-
'checktextdomain',
206-
'makepot'
207-
]);
208-
209-
grunt.registerTask( 'css', [
210-
'sass',
211-
'cssmin'
212-
]);
190+
grunt.registerTask('default', ['css', 'js', 'i18n']);
191+
192+
grunt.registerTask('js', ['babel']);
193+
194+
grunt.registerTask('i18n', ['checktextdomain', 'makepot']);
195+
196+
grunt.registerTask('css', ['sass', 'cssmin']);
213197
};

0 commit comments

Comments
 (0)
Please sign in to comment.