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. Main documentation here: https://hexdocs.pm/elixir_project_checklist/readme.html """ @doc """ returns the atom :world """ @spec hello() :: atom() def hello do :world end end