Created
February 5, 2021 22:28
-
-
Save zaid/aa9bf7e3ae9eb57e79399f48e7363fd8 to your computer and use it in GitHub Desktop.
Elixir projections
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
{ | |
"lib/*.ex": { | |
"alternate": "test/{}_test.exs", | |
"type": "source" | |
}, | |
"test/*_test.exs": { | |
"alternate": "lib/{}.ex", | |
"make": "mix test {file}", | |
"type": "test" | |
}, | |
"mix.exs": { | |
"alternate": "mix.lock", | |
"type": "mix" | |
}, | |
"mix.lock": { | |
"alternate": "mix.exs" | |
}, | |
"*": { | |
"console": "iex -S mix" | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment