Skip to content

Commit

Permalink
don't need duplicate file selectors
Browse files Browse the repository at this point in the history
  • Loading branch information
jonrohan committed Apr 17, 2024
1 parent 9f83db5 commit 6c97604
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions index.js
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ export default {
},
overrides: [
{
files: ['*.scss', '**/*.scss'],
files: ['**/*.scss'],
customSyntax: 'postcss-scss',
plugins: ['stylelint-scss'],
rules: {
Expand All @@ -127,7 +127,7 @@ export default {
},
},
{
files: ['*.tsx', '**/*.tsx'],
files: ['**/*.tsx'],
customSyntax: 'postcss-styled-syntax',
rules: {
'order/properties-order': null,
Expand Down Expand Up @@ -160,7 +160,7 @@ export default {
},
},
{
files: ['*.pcss', '**/*.pcss'],
files: ['**/*.pcss'],
rules: {
'media-feature-range-notation': null,
'import-notation': null,
Expand Down

0 comments on commit 6c97604

Please sign in to comment.