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 ansible language id
  • Loading branch information
PKief committed Aug 28, 2023
1 parent e487794 commit a2c39c0
Showing 1 changed file with 11 additions and 2 deletions.
13 changes: 11 additions & 2 deletions src/icons/languageIcons.ts
Expand Up @@ -5,12 +5,21 @@ 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',
'ansible',
'ansible-jinja',
],
},
{ 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 a2c39c0

Please sign in to comment.