Skip to content
This repository was archived by the owner on May 5, 2022. It is now read-only.

Commit 97bbc63

Browse files
committed
ignore .harness directory from excoveralls
1 parent 92dd53e commit 97bbc63

File tree

2 files changed

+17
-1
lines changed

2 files changed

+17
-1
lines changed

CHANGELOG.md

+16
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,22 @@ The format is based on [Keep a
66
Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to
77
[Semantic Versioning](https://semver.org/spec/v2.0.0.html).
88

9+
## 0.0.2 - 2020-08-24
10+
11+
### Added
12+
13+
- The default directories ignored by excoveralls now includes `.harness`
14+
15+
## 0.0.1 - 2020-08-24
16+
17+
### Added
18+
19+
- A number of common dotfiles are available for generation
20+
- `.tool-versions` used by `asdf` version manager
21+
- `.credo.exs` with convene bindings
22+
- `coveralls.json` excoveralls config
23+
- `.formatter.exs` elixir formatter config
24+
925
## 0.0.0 - 2020-08-24
1026

1127
### Added

lib/harness_dotfiles.ex

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ defmodule HarnessDotfiles do
55

66
@behaviour Harness.Pkg
77

8-
defstruct coveralls_skip_files: ["^test", "^deps"],
8+
defstruct coveralls_skip_files: ["^test", "^deps", "^.harness"],
99
explicit_credo_checks: [],
1010
excluded_paths_for_modulename_matches_filename: [],
1111
asdf_elixir_version: "1.10.3-otp-21",

0 commit comments

Comments
 (0)