Skip to content

Commit 2b92c8e

Browse files
committed
Update pylint task in gulp
1 parent 44076e3 commit 2b92c8e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

gulpfile.js/tasks/pylint.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ const gulp = require('gulp');
22
const exec = require('child_process').exec;
33

44
let pylintTask = (cb) => {
5-
exec('pylint packet', function (err, stdout, stderr) {
5+
exec('pylint --load-plugins pylint_quotes packet/routes packet', function (err, stdout, stderr) {
66
console.log(stdout);
77
console.log(stderr);
88
cb(err);

0 commit comments

Comments
 (0)