Skip to content

Commit

Permalink
Add missing language ids for yaml icon (#2066)
Browse files Browse the repository at this point in the history
* Associate github-actions-workflow language id with yaml icon

* Add spring boot properties yaml language id

* Add jinja yaml language id
  • Loading branch information
PKief committed Aug 28, 2023
1 parent e487794 commit 619aa4b
Showing 1 changed file with 10 additions and 2 deletions.
12 changes: 10 additions & 2 deletions src/icons/languageIcons.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,20 @@ import { LanguageIcon } from '../models';
*/
export const languageIcons: LanguageIcon[] = [
{ icon: { name: 'git' }, ids: ['git', 'git-commit', 'git-rebase', 'ignore'] },
{ icon: { name: 'yaml' }, ids: ['yaml'] },
{
icon: { name: 'yaml' },
ids: [
'yaml',
'github-actions-workflow',
'spring-boot-properties-yaml',
'jinja-yaml',
],
},
{ icon: { name: 'xml' }, ids: ['xml', 'xquery', 'xsl'] },
{ icon: { name: 'matlab' }, ids: ['matlab'] },
{
icon: { name: 'settings' },
ids: ['makefile', 'toml', 'ini', 'properties'],
ids: ['makefile', 'toml', 'ini', 'properties', 'spring-boot-properties'],
},
{ icon: { name: 'shaderlab' }, ids: ['shaderlab'] },
{ icon: { name: 'diff' }, ids: ['diff'] },
Expand Down

0 comments on commit 619aa4b

Please sign in to comment.