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 format in generated code (spaces in arrays) #23

Open
mariocao opened this issue Jun 1, 2020 · 0 comments
Open

Fix format in generated code (spaces in arrays) #23

mariocao opened this issue Jun 1, 2020 · 0 comments
Labels
bug Something isn't working good first issue Good for newcomers Phase 2 Allocation

Comments

@mariocao
Copy link
Contributor

mariocao commented Jun 1, 2020

The generated code is not complaint with the linter we are using (solhint):

For example:

  filters: [
    [ Witnet.Types.FILTERS.deviationStandard, 1.5 ],
  ],
})

It should be:

  filters: [
    [Witnet.Types.FILTERS.deviationStandard, 1.5],
  ],
})
@mariocao mariocao added the bug Something isn't working label Jun 1, 2020
@mariocao mariocao added the good first issue Good for newcomers label Jul 23, 2020
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Something isn't working good first issue Good for newcomers Phase 2 Allocation
Projects
None yet
Development

Successfully merging a pull request may close this issue.

2 participants