Skip to content

Commit 32be8da

Browse files
authored
Ignore .next folder, reorder alphabetically
1 parent 8850764 commit 32be8da

File tree

1 file changed

+6
-5
lines changed

1 file changed

+6
-5
lines changed

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

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -34,16 +34,17 @@ export interface CSSVariablesSettings {
3434
export const defaultSettings: CSSVariablesSettings = {
3535
lookupFiles: ['**/*.less', '**/*.scss', '**/*.sass', '**/*.css'],
3636
blacklistFolders: [
37+
'**/.DS_Store',
3738
'**/.git',
38-
'**/.svn',
3939
'**/.hg',
40-
'**/CVS',
41-
'**/.DS_Store',
42-
'**/node_modules',
40+
'**/.next',
41+
'**/.svn',
4342
'**/bower_components',
44-
'**/tmp',
43+
'**/CVS',
4544
'**/dist',
45+
'**/node_modules',
4646
'**/tests',
47+
'**/tmp',
4748
],
4849
};
4950

0 commit comments

Comments
 (0)