├── .github └── workflows │ └── ci.yml ├── .gitignore ├── CHANGELOG.md ├── LICENSE ├── README.md ├── elvis.config ├── rebar.config ├── rebar.lock ├── src ├── rebar3_lint.app.src ├── rebar3_lint.erl └── rebar3_lint_prv.erl └── test └── test_app_SUITE.erl /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fifo/rebar3_lint/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fifo/rebar3_lint/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fifo/rebar3_lint/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fifo/rebar3_lint/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fifo/rebar3_lint/HEAD/README.md -------------------------------------------------------------------------------- /elvis.config: -------------------------------------------------------------------------------- 1 | []. 2 | -------------------------------------------------------------------------------- /rebar.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fifo/rebar3_lint/HEAD/rebar.config -------------------------------------------------------------------------------- /rebar.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fifo/rebar3_lint/HEAD/rebar.lock -------------------------------------------------------------------------------- /src/rebar3_lint.app.src: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fifo/rebar3_lint/HEAD/src/rebar3_lint.app.src -------------------------------------------------------------------------------- /src/rebar3_lint.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fifo/rebar3_lint/HEAD/src/rebar3_lint.erl -------------------------------------------------------------------------------- /src/rebar3_lint_prv.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fifo/rebar3_lint/HEAD/src/rebar3_lint_prv.erl -------------------------------------------------------------------------------- /test/test_app_SUITE.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-fifo/rebar3_lint/HEAD/test/test_app_SUITE.erl --------------------------------------------------------------------------------