Skip to content

Commit

Permalink
feat(stylelint): ignore files updated
Browse files Browse the repository at this point in the history
  • Loading branch information
deot committed Dec 14, 2023
1 parent a754b75 commit 8a75630
Showing 1 changed file with 11 additions and 1 deletion.
12 changes: 11 additions & 1 deletion packages/stylelint/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -197,5 +197,15 @@ export default {
'speak'
],
},
ignoreFiles: ['**/*.js', '**/*.jsx'],
ignoreFiles: [
'**/node_modules/**',
'**/dist/**',
'**/temp/**',
'**/tmp/**',
'**/coverage/**',
'**/*.js',
'**/*.ts',
'**/*.tsx',
'**/*.jsx'
]
};

0 comments on commit 8a75630

Please sign in to comment.