mobilizon.chapril.org-mobil.../support/guides/development/styleguide.md

23 lines
787 B
Markdown
Raw Normal View History

# Styleguide
2019-05-19 11:38:09 +02:00
## Elixir
We format our code with the Elixir Formatter and check for issues with [Credo](https://github.com/rrrene/credo) (a few rules are not blocking).
2019-05-19 11:38:09 +02:00
Please run these two commands before pushing code:
* `mix format`
* `mix credo`
These two commands must not return an error code, since they are required to pass inside CI.
2019-05-19 11:38:09 +02:00
## Front-end
We use `tslint` with the `tslint-config-airbnb` preset.
Errors should be reported when running in dev mode `yarn run dev` or when building a production bundle `yarn run build`.
2019-05-19 11:38:09 +02:00
Please run the following command before pushing code `yarn run lint`.
This command must not return an error code, since it's required to pass inside CI.
We also try to follow the [official Vue.js style guide](https://vuejs.org/v2/style-guide/).