Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix dashes in Haskell module names #173

Merged
merged 1 commit into from
Oct 22, 2021

Commits on Oct 21, 2021

  1. Fix dashes in Haskell module names

    This fixes dashes appearing in generated Haskell module names when you
    have `*.proto` files which have dashes in their names. For instance if
    you name your `*.proto` file like this: `foo-bar-baz.proto` you get
    `Foo-bar-baz` Haskell module name which is just broken.
    
    With this fix if I name proto file like `foo-bar---baz.proto` I get
    `module FooBarBaz where` in the `FooBarBaz.hs` Haskell file.
    unclechu committed Oct 21, 2021
    Configuration menu
    Copy the full SHA
    42fe8c2 View commit details
    Browse the repository at this point in the history