Skip to content

Commit

Permalink
chore(stylelint): Use path.resolve Instead of resolve
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
FlorianWendelborn committed Sep 16, 2021
1 parent 41736f4 commit bc4c257
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions 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',
Expand Down

0 comments on commit bc4c257

Please sign in to comment.