Skip to content

Commit

Permalink
🐛 fix: Fix stylelint
Browse files Browse the repository at this point in the history
  • Loading branch information
canisminor1990 committed Jul 1, 2024
1 parent 687f61a commit 13b8d9c
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions src/stylelint/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,19 +11,19 @@ export default {
files: ['*.less', '*.css'],
plugins: ['stylelint-less'],
rules: {
'at-rule-no-unknown': false,
'at-rule-no-unknown': null,
'color-no-invalid-hex': true,
'function-no-unknown': false,
'function-no-unknown': null,
'less/color-no-invalid-hex': true,
},
},
{
customSyntax: 'postcss-styled-syntax',
files: ['*.js', '*.jsx', '*.ts', '*.tsx'],
rules: {
'no-empty-source': false,
'no-invalid-double-slash-comments': false,
'no-missing-end-of-source-newline': false,
'no-empty-source': null,
'no-invalid-double-slash-comments': null,
'no-missing-end-of-source-newline': null,
'property-no-vendor-prefix': true,
'value-no-vendor-prefix': [true, { ignoreValues: ['box'] }],
},
Expand Down

0 comments on commit 13b8d9c

Please sign in to comment.