Skip to content

Commit 4f54ed3

Browse files
committed
Lint
1 parent 538c034 commit 4f54ed3

File tree

1 file changed

+14
-14
lines changed

1 file changed

+14
-14
lines changed

gulp-config.js

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -8,26 +8,26 @@
88

99
module.exports = {
1010
// Style options.
11-
styleSRC: ["./assets/scss/**/*.scss", "./blocks/**/*.scss"], // Path to main .scss file.
12-
styleDestination: "./assets/css/", // Path to place the compiled CSS file. Default set to root folder.
13-
outputStyle: "compressed", // Available options → 'compact' or 'compressed' or 'nested' or 'expanded'
11+
styleSRC: ['./assets/scss/**/*.scss', './blocks/**/*.scss'], // Path to main .scss file.
12+
styleDestination: './assets/css/', // Path to place the compiled CSS file. Default set to root folder.
13+
outputStyle: 'compressed', // Available options → 'compact' or 'compressed' or 'nested' or 'expanded'
1414
precision: 5,
15-
loadPaths: ["./assets/scss"], // Tell Sass where to look for @import statements
15+
loadPaths: ['./assets/scss'], // Tell Sass where to look for @import statements
1616

1717
// JS Custom options.
18-
scriptSRC: ["./**/*.src.js", "!./vendor/", "!./node_modules/"], // Globs of scripts to process.
19-
scriptBase: "./", // Path where the globs are considered to start.
20-
scriptDest: "./", // Path where we save the scripts back to.
18+
scriptSRC: ['./**/*.src.js', '!./vendor/', '!./node_modules/'], // Globs of scripts to process.
19+
scriptBase: './', // Path where the globs are considered to start.
20+
scriptDest: './', // Path where we save the scripts back to.
2121

2222
// Watch files paths.
23-
styleWatchFiles: ["./assets/scss/**/*.scss", "./blocks/**/*.scss"], // *.scss files to watch changes and recompile
24-
scriptWatchFiles: ["./assets/js/**/*.src.js", "./blocks/**/*.src.js"], // *.src.js files to watch changes and recompile
23+
styleWatchFiles: ['./assets/scss/**/*.scss', './blocks/**/*.scss'], // *.scss files to watch changes and recompile
24+
scriptWatchFiles: ['./assets/js/**/*.src.js', './blocks/**/*.src.js'], // *.src.js files to watch changes and recompile
2525

2626
filesToClean: [
27-
"./assets/css/",
28-
"./assets/js/**/*.js",
29-
"!./assets/js/",
30-
"!./assets/js/**/*.src.js",
27+
'./assets/css/',
28+
'./assets/js/**/*.js',
29+
'!./assets/js/',
30+
'!./assets/js/**/*.src.js',
3131
],
3232

3333
// Dependencies to move into place
@@ -53,5 +53,5 @@ module.exports = {
5353
],
5454

5555
// Browsers you care about for autoprefixing. Browserlist https://github.com/browserslist/browserslist
56-
BROWSERS_LIST: ["last 10 versions"],
56+
BROWSERS_LIST: ['last 10 versions'],
5757
};

0 commit comments

Comments
 (0)