diff options
-rw-r--r-- | identify/extensions.py | 10 | ||||
-rw-r--r-- | setup.cfg | 2 |
2 files changed, 11 insertions, 1 deletions
diff --git a/identify/extensions.py b/identify/extensions.py index 09a7126..10fe83f 100644 --- a/identify/extensions.py +++ b/identify/extensions.py @@ -13,6 +13,9 @@ EXTENSIONS = { 'bat': {'text', 'batch'}, 'bats': {'text', 'shell', 'bash', 'bats'}, 'bazel': {'text', 'bazel'}, + 'bb': {'text', 'bitbake'}, + 'bbappend': {'text', 'bitbake'}, + 'bbclass': {'text', 'bitbake'}, 'beancount': {'text', 'beancount'}, 'bib': {'text', 'bib'}, 'bmp': {'binary', 'image', 'bitmap'}, @@ -43,6 +46,7 @@ EXTENSIONS = { 'cson': {'text', 'cson'}, 'css': {'text', 'css'}, 'csv': {'text', 'csv'}, + 'csx': {'text', 'c#', 'c#script'}, 'cu': {'text', 'cuda'}, 'cue': {'text', 'cue'}, 'cuh': {'text', 'cuda'}, @@ -75,6 +79,8 @@ EXTENSIONS = { 'feature': {'text', 'gherkin'}, 'fish': {'text', 'fish'}, 'fits': {'binary', 'fits'}, + 'fs': {'text', 'f#'}, + 'fsx': {'text', 'f#', 'f#script'}, 'gd': {'text', 'gdscript'}, 'gemspec': {'text', 'ruby'}, 'geojson': {'text', 'geojson', 'json'}, @@ -319,6 +325,7 @@ NAMES = { '.csslintrc': EXTENSIONS['json'] | {'csslintrc'}, '.dockerignore': {'text', 'dockerignore'}, '.editorconfig': {'text', 'editorconfig'}, + '.envrc': EXTENSIONS['bash'], '.flake8': EXTENSIONS['ini'] | {'flake8'}, '.gitattributes': {'text', 'gitattributes'}, '.gitconfig': EXTENSIONS['ini'] | {'gitconfig'}, @@ -343,6 +350,8 @@ NAMES = { '.zshrc': EXTENSIONS['zsh'], '.zshenv': EXTENSIONS['zsh'], 'AUTHORS': EXTENSIONS['txt'], + 'bblayers.conf': EXTENSIONS['bb'], + 'bitbake.conf': EXTENSIONS['bb'], 'BUILD': EXTENSIONS['bzl'], 'Cargo.toml': EXTENSIONS['toml'] | {'cargo'}, 'Cargo.lock': EXTENSIONS['toml'] | {'cargo-lock'}, @@ -354,6 +363,7 @@ NAMES = { 'copy.bara.sky': EXTENSIONS['bzl'], 'COPYING': EXTENSIONS['txt'], 'Dockerfile': {'text', 'dockerfile'}, + 'direnvrc': EXTENSIONS['bash'], 'Gemfile': EXTENSIONS['rb'], 'Gemfile.lock': {'text'}, 'GNUmakefile': EXTENSIONS['mk'], @@ -1,6 +1,6 @@ [metadata] name = identify -version = 2.6.2 +version = 2.6.3 description = File identification library for Python long_description = file: README.md long_description_content_type = text/markdown |