From bc4c25744fa713f97fe3a4522e7c9f3a7611e533 Mon Sep 17 00:00:00 2001 From: Florian Wendelborn <1133858+FlorianWendelborn@users.noreply.github.com> Date: Thu, 16 Sep 2021 02:37:27 +0200 Subject: [PATCH] chore(stylelint): Use path.resolve Instead of resolve This is basically a test commit to try out if the autorebase workflow actually works faster now that linting is supposedly ignored for autorebase branches. --- stylelint.config.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/stylelint.config.js b/stylelint.config.js index 55fd8d61c6..6e40434023 100644 --- a/stylelint.config.js +++ b/stylelint.config.js @@ -1,8 +1,8 @@ // eslint-disable-next-line @typescript-eslint/no-var-requires -const { resolve } = require('path') +const path = require('path') module.exports = { - configBaseDir: resolve(__dirname, 'node_modules'), + configBaseDir: path.resolve(__dirname, 'node_modules'), plugins: ['stylelint-csstree-validator', 'stylelint-selector-no-empty'], extends: [ 'stylelint-config-recommended-scss',