Skip to content

Commit

Permalink
Fix sorting entries in dictionary
Browse files Browse the repository at this point in the history
  • Loading branch information
KORraNpl committed Feb 10, 2024
1 parent 7bdc800 commit 72f816f
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions identify/extensions.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@
'adoc': {'text', 'asciidoc'},
'ai': {'binary', 'adobe-illustrator'},
'aj': {'text', 'aspectj'},
'asciidoc': {'text', 'asciidoc'},
'apinotes': {'text', 'apinotes'},
'asar': {'binary', 'asar'},
'asciidoc': {'text', 'asciidoc'},
'avif': {'binary', 'image', 'avif'},
'avsc': {'text', 'avro-schema'},
'bash': {'text', 'shell', 'bash'},
Expand Down Expand Up @@ -37,9 +37,9 @@
'cr': {'text', 'crystal'},
'crt': {'text', 'pem'},
'cs': {'text', 'c#'},
'csproj': {'text', 'xml', 'csproj'},
'csh': {'text', 'shell', 'csh'},
'cson': {'text', 'cson'},
'csproj': {'text', 'xml', 'csproj'},
'css': {'text', 'css'},
'csv': {'text', 'csv'},
'cu': {'text', 'cuda'},
Expand Down Expand Up @@ -80,8 +80,8 @@
'go': {'text', 'go'},
'gotmpl': {'text', 'gotmpl'},
'gpx': {'text', 'gpx', 'xml'},
'graphql': {'text', 'graphql'},
'gradle': {'text', 'groovy'},
'graphql': {'text', 'graphql'},
'groovy': {'text', 'groovy'},
'gyb': {'text', 'gyb'},
'gyp': {'text', 'gyp', 'python'},
Expand Down Expand Up @@ -122,9 +122,9 @@
'jpg': {'binary', 'image', 'jpeg'},
'js': {'text', 'javascript'},
'json': {'text', 'json'},
'json5': {'text', 'json5'},
'jsonld': {'text', 'json', 'jsonld'},
'jsonnet': {'text', 'jsonnet'},
'json5': {'text', 'json5'},
'jsx': {'text', 'jsx'},
'key': {'text', 'pem'},
'kml': {'text', 'kml', 'xml'},
Expand Down Expand Up @@ -164,8 +164,8 @@
'myst': {'text', 'myst'},
'ngdoc': {'text', 'ngdoc'},
'nim': {'text', 'nim'},
'nims': {'text', 'nim'},
'nimble': {'text', 'nimble'},
'nims': {'text', 'nim'},
'nix': {'text', 'nix'},
'njk': {'text', 'nunjucks'},
'otf': {'binary', 'otf'},
Expand Down Expand Up @@ -270,9 +270,9 @@
'woff': {'binary', 'woff'},
'woff2': {'binary', 'woff2'},
'wsgi': {'text', 'wsgi', 'python'},
'xhtml': {'text', 'xml', 'html', 'xhtml'},
'xacro': {'text', 'xml', 'urdf', 'xacro'},
'xctestplan': {'text', 'json'},
'xhtml': {'text', 'xml', 'html', 'xhtml'},
'xml': {'text', 'xml'},
'xq': {'text', 'xquery'},
'xql': {'text', 'xquery'},
Expand Down Expand Up @@ -336,12 +336,12 @@
'.zlogin': EXTENSIONS['zsh'],
'.zlogout': EXTENSIONS['zsh'],
'.zprofile': EXTENSIONS['zsh'],
'.zshrc': EXTENSIONS['zsh'],
'.zshenv': EXTENSIONS['zsh'],
'.zshrc': EXTENSIONS['zsh'],
'AUTHORS': EXTENSIONS['txt'],
'BUILD': EXTENSIONS['bzl'],
'CMakeLists.txt': EXTENSIONS['cmake'],
'CHANGELOG': EXTENSIONS['txt'],
'CMakeLists.txt': EXTENSIONS['cmake'],
'config.ru': EXTENSIONS['rb'],
'Containerfile': {'text', 'dockerfile'},
'CONTRIBUTING': EXTENSIONS['txt'],
Expand All @@ -357,9 +357,9 @@
'LICENSE': EXTENSIONS['txt'],
'MAINTAINERS': EXTENSIONS['txt'],
'Makefile': EXTENSIONS['mk'],
'makefile': EXTENSIONS['mk'],
'meson.build': EXTENSIONS['meson'],
'meson_options.txt': EXTENSIONS['meson'],
'makefile': EXTENSIONS['mk'],
'NEWS': EXTENSIONS['txt'],
'NOTICE': EXTENSIONS['txt'],
'PATENTS': EXTENSIONS['txt'],
Expand All @@ -369,8 +369,8 @@
'poetry.lock': EXTENSIONS['toml'],
'pom.xml': EXTENSIONS['pom'],
'pylintrc': EXTENSIONS['ini'] | {'pylintrc'},
'README': EXTENSIONS['txt'],
'Rakefile': EXTENSIONS['rb'],
'README': EXTENSIONS['txt'],
'rebar.config': EXTENSIONS['erl'],
'setup.cfg': EXTENSIONS['ini'],
'sys.config': EXTENSIONS['erl'],
Expand Down

0 comments on commit 72f816f

Please sign in to comment.