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

Hexadecimal numbers in enums are output as decimal numbers #1006

Closed
3 tasks
vsinha opened this issue Aug 14, 2020 · 0 comments · Fixed by #1008
Closed
3 tasks

Hexadecimal numbers in enums are output as decimal numbers #1006

vsinha opened this issue Aug 14, 2020 · 0 comments · Fixed by #1008

Comments

@vsinha
Copy link

vsinha commented Aug 14, 2020

Issue created from fantomas-online

Code

type Foo =
    | One = 0x00000001
    | Two = 0x00000002

Result

type Foo =
    | One = 1
    | Two = 2

Problem description

Hex numbers in enum definitions are output as decimal numbers. Possibly similar to #995

Extra information

  • The formatted result breaks by code.
  • The formatted result gives compiler warnings.
  • I or my company would be willing to help fix this.

Options

Fantomas Master at 08/10/2020 06:52:52 - 6d8f084

Name Value
IndentSize 4
MaxLineLength 120
SemicolonAtEndOfLine false
SpaceBeforeParameter true
SpaceBeforeLowercaseInvocation true
SpaceBeforeUppercaseInvocation false
SpaceBeforeClassConstructor false
SpaceBeforeMember false
SpaceBeforeColon false
SpaceAfterComma true
SpaceBeforeSemicolon false
SpaceAfterSemicolon true
IndentOnTryWith false
SpaceAroundDelimiter true
MaxIfThenElseShortWidth 40
MaxInfixOperatorExpression 50
MaxRecordWidth 40
MaxArrayOrListWidth 40
MaxValueBindingWidth 40
MaxFunctionBindingWidth 40
MultilineBlockBracketsOnSameColumn false
NewlineBetweenTypeDefinitionAndMembers false
KeepIfThenInSameLine false
MaxElmishWidth 40
SingleArgumentWebMode false
AlignFunctionSignatureToIndentation false
AlternativeLongMemberDefinitions false
StrictMode false
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging a pull request may close this issue.

1 participant