1.0.2 • Published 8 years ago

textlint-formatter-codecov v1.0.2

Weekly downloads
13
License
MIT
Repository
github
Last release
8 years ago

textlint-formatter-codecov Build Status

textlint formatter for Codecov.

What is Codecov format?

See Codecov JSON.

{
  "coverage": {
    "path/to/file.py": [null, 1, 0, null, true, 0, 0, 1, 1],
    "path/to/other.py": [null, 0, 1, 1, "1/3", null]
  },
  "messages": {
    "path/to/other.py": {
      "1": "custom message for line 1"
    }
  }
}

Installation

npm install textlint-formatter-codecov

Usage

# In Travis CI | Circle CI...
npm install codecov.io textlint textlint-formatter-codecov -D
textlint -f codecov | codecov.io

See Example and Result.

  • codecov.io
1: # Example [![codecov.io](https://codecov.io/github/azu/textlint-formatter-codecov/coverage.svg?branch=master)](https://codecov.io/github/azu/textlint-formatter-codecov?branch=master)
2: 
3(✔textlint error): - [ ] TODO 
4:
5(✔textlint error): jQuerl is not jQuery.
6: 
7: Here.
  • 5 Hit(line)
  • 2 Missed(line)

=> 1 - (2/7) = 71.42% = Text Coverage!

Tests

npm test

Contributing

  1. Fork it!
  2. Create your feature branch: git checkout -b my-new-feature
  3. Commit your changes: git commit -am 'Add some feature'
  4. Push to the branch: git push origin my-new-feature
  5. Submit a pull request :D

License

MIT