Skip to content

Commit 255a208

Browse files
authored
Merge pull request vunguyentuan#53 from karlhorky/patch-1
Ignore .next & .cache folders, reorder alphabetically
2 parents 8850764 + a36efd0 commit 255a208

File tree

2 files changed

+12
-5
lines changed

2 files changed

+12
-5
lines changed

.changeset/swift-dots-approve.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
"css-variables-language-server": patch
3+
---
4+
5+
Ignore .next & .cache folders, reorder alphabetically

packages/css-variables-language-server/src/CSSVariableManager.ts

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -34,16 +34,18 @@ export interface CSSVariablesSettings {
3434
export const defaultSettings: CSSVariablesSettings = {
3535
lookupFiles: ['**/*.less', '**/*.scss', '**/*.sass', '**/*.css'],
3636
blacklistFolders: [
37+
'**/.cache',
38+
'**/.DS_Store',
3739
'**/.git',
38-
'**/.svn',
3940
'**/.hg',
40-
'**/CVS',
41-
'**/.DS_Store',
42-
'**/node_modules',
41+
'**/.next',
42+
'**/.svn',
4343
'**/bower_components',
44-
'**/tmp',
44+
'**/CVS',
4545
'**/dist',
46+
'**/node_modules',
4647
'**/tests',
48+
'**/tmp',
4749
],
4850
};
4951

0 commit comments

Comments
 (0)