Skip to content

Commit

Permalink
add '.bazel' to extension list
Browse files Browse the repository at this point in the history
Improve support for Bazel files by adding `.bazel` to the extension list
to support files like `MODULE.bazel`, `WORKSPACE.bazel`, etc.
  • Loading branch information
Slowki committed Aug 17, 2023
1 parent a63c472 commit a5c156c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion identify/extensions.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@
'bash': {'text', 'shell', 'bash'},
'bat': {'text', 'batch'},
'bats': {'text', 'shell', 'bash', 'bats'},
'bazel': {'text', 'bazel'},
'beancount': {'text', 'beancount'},
'bib': {'text', 'bib'},
'bmp': {'binary', 'image', 'bitmap'},
Expand Down Expand Up @@ -326,7 +327,6 @@
'.zshenv': EXTENSIONS['zsh'],
'AUTHORS': EXTENSIONS['txt'],
'BUILD': EXTENSIONS['bzl'],
'BUILD.bazel': EXTENSIONS['bzl'],
'CMakeLists.txt': EXTENSIONS['cmake'],
'CHANGELOG': EXTENSIONS['txt'],
'config.ru': EXTENSIONS['rb'],
Expand Down

0 comments on commit a5c156c

Please sign in to comment.