Skip to content

Commit

Permalink
cargo fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
Wilfred committed Jun 2, 2023
1 parent 653660e commit 81ac9d1
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/parse/guess_language.rs
Expand Up @@ -221,7 +221,9 @@ pub fn language_globs(language: Language) -> Vec<glob::Pattern> {
// C++ is more widely used than C according to
// https://madnight.github.io/githut/
// Also, treating CUDA as C++
CPlusPlus => &["*.cc", "*.cpp", "*.h", "*.hh", "*.hpp", "*.ino", "*.cxx", "*.cu"],
CPlusPlus => &[
"*.cc", "*.cpp", "*.h", "*.hh", "*.hpp", "*.ino", "*.cxx", "*.cu",
],
CSharp => &["*.cs"],
Css => &["*.css"],
Dart => &["*.dart"],
Expand Down

0 comments on commit 81ac9d1

Please sign in to comment.