Packages

ElixirProjectChecklist Is a checklist to follow to create new Elixir projects to add things like, formating, versioning, debuging, documentation, code coverage, package publishing, testing etc. You can follow the checklist in project or clone the project if your creating a barebose project.

Current section

Files

Jump to
elixir_project_checklist lib elixir_project_checklist.ex
Raw

lib/elixir_project_checklist.ex

defmodule ElixirProjectChecklist do
@moduledoc """
Documentation for ElixirProjectChecklist.. ElixirProjectChecklist Is a checklist
to follow to create new Elixir projects to add things like, formating, versioning,
debuging, documentation, code coverage, package publishing, testing etc. You can
follow the checklist in project or clone the project if your creating a barebose
project.
"""
@doc """
returns the atom :world
"""
@spec hello() :: atom()
def hello do
:world
end
end