Skip to content

Commit f57b4e2

Browse files
authored
feat: add support for more Python-adjacent file types (#2954)
1 parent e34f704 commit f57b4e2

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

src/core/icons/fileIcons.ts

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -488,7 +488,7 @@ export const fileIcons: FileIcons = {
488488
{ name: 'python', fileExtensions: ['py'] },
489489
{
490490
name: 'python-misc',
491-
fileExtensions: ['pyc', 'whl'],
491+
fileExtensions: ['pyc', 'whl', 'egg'],
492492
fileNames: [
493493
'requirements.txt',
494494
'pipfile',
@@ -498,6 +498,11 @@ export const fileIcons: FileIcons = {
498498
'.pylintrc',
499499
'pyproject.toml',
500500
'py.typed',
501+
'.coveragerc',
502+
'.coverage',
503+
'.scrapy',
504+
'celerybeat-schedule',
505+
'celerybeat.pid',
501506
],
502507
},
503508
{

0 commit comments

Comments
 (0)