-
-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* docs: various updates * ci: update workflows * fix: update dependencies * test: disable inspect override tests * fix: remove inspect overrides and pass tests * chore: update gitignore * docs: update CHANGELOG
- Loading branch information
Showing
10 changed files
with
152 additions
and
72 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,19 +1,34 @@ | ||
# The directory Mix will write compiled artifacts to. | ||
/_build | ||
/_build/ | ||
|
||
# If you run "mix test --cover", coverage assets end up here. | ||
/cover | ||
/cover/ | ||
|
||
# The directory Mix downloads your dependencies sources to. | ||
/deps | ||
/deps/ | ||
|
||
# Where 3rd-party dependencies like ExDoc output generated docs. | ||
/doc | ||
# Where third-party dependencies like ExDoc output generated docs. | ||
/doc/ | ||
|
||
# Ignore .fetch files in case you like to edit your project deps locally. | ||
/.fetch | ||
|
||
# If the VM crashes, it generates a dump, let's ignore it too. | ||
erl_crash.dump | ||
|
||
# Also ignore archive artifacts (built via "mix archive.build"). | ||
*.ez | ||
|
||
# Ignore package tarball (built via "mix hex.build"). | ||
scribe-*.tar | ||
|
||
# Temporary files for e.g. tests. | ||
/tmp/ | ||
|
||
# Ignore dialyzer files. | ||
/priv/plts/*.plt | ||
/priv/plts/*.plt.hash | ||
|
||
# Misc | ||
.iex.exs | ||
.DS_Store |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
elixir 1.17.2-otp-27 | ||
erlang 27.0.1 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,15 @@ | ||
# Contribution Guidelines | ||
|
||
## Steps | ||
|
||
1. Fork [scribe](https://github.com/codedge-llc/scribe) | ||
2. Run your tests: `mix test` | ||
3. Create your feature branch (`git checkout -b feat/my-new-feature`) | ||
4. Make your changes | ||
5. Test your changes | ||
6. Run the formatter: `mix format` | ||
7. Lint with credo: `mix credo` | ||
8. Commit your changes (`git commit -m 'feat: some feature'`). | ||
Scribe follows the [Karma-style git commit message](http://karma-runner.github.io/1.0/dev/git-commit-msg.html) | ||
9. Push the branch (`git push origin feat/my-new-feature`) | ||
10. Create a Pull Request | ||
# Contributing | ||
|
||
## Testing | ||
|
||
Unit tests can be run with `mix test` or `mix coveralls.html`. | ||
|
||
## Formatting | ||
|
||
This project uses Elixir's `mix format` and [Prettier](https://prettier.io) for formatting. | ||
Add hooks in your editor of choice to run it after a save. Be sure it respects this project's | ||
`.formatter.exs`. | ||
|
||
## Commits | ||
|
||
Git commit subjects use the [Karma style](http://karma-runner.github.io/5.0/dev/git-commit-msg.html). |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -142,6 +142,7 @@ defmodule Scribe do | |
defp fetch_keys(map) do | ||
map | ||
|> Map.keys() | ||
|> Enum.sort() | ||
|> process_headers() | ||
end | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.