From f7c097afd924ad1d8b5e48fb73660982b747a70f Mon Sep 17 00:00:00 2001 From: Christoph Guttandin Date: Tue, 17 Jul 2018 15:13:00 +0200 Subject: [PATCH] style: apply linting rules --- Gruntfile.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Gruntfile.js b/Gruntfile.js index ba1be36f..56b2f912 100644 --- a/Gruntfile.js +++ b/Gruntfile.js @@ -1,9 +1,10 @@ const loadGruntConfig = require('load-grunt-config'); +const { cwd } = require('process'); module.exports = (grunt) => { loadGruntConfig(grunt, { - configPath: process.cwd() + '/config/grunt' + configPath: cwd() + '/config/grunt' }); grunt.loadNpmTasks('gruntify-eslint');