Skip to content

Commit 7dda037

Browse files
refactor: config files to CommonJS ❤️
Signed-off-by: Vinayak Kulkarni <19776877+vinayakkulkarni@users.noreply.github.com>
1 parent fff6655 commit 7dda037

6 files changed

+16
-6
lines changed
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

stylelint.config.cjs

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
module.exports = {
2+
extends: [
3+
'stylelint-config-prettier',
4+
'stylelint-config-standard',
5+
'stylelint-config-recommended-scss',
6+
],
7+
ignoreFiles: [
8+
'node_modules/*',
9+
'src/assets/**',
10+
'build/**',
11+
'src/lib/styles/normalise.css',
12+
],
13+
defaultSeverity: 'error',
14+
customSyntax: 'postcss-html',
15+
rules: {},
16+
};

stylelint.config.js

Lines changed: 0 additions & 6 deletions
This file was deleted.

0 commit comments

Comments
 (0)