An open API service for producing an overview of a list of open source projects.

Haskell: https://github.com/haskell/haddock

documentation haskell

Score: 23.139317205781445

Last synced: about 5 hours ago
JSON representation

Repository metadata:

Haskell Documentation Tool


Owner metadata:


GitHub Events

Total
Last Year

Committers metadata

Last synced: 1 day ago

Total Commits: 3,597
Total Committers: 180
Avg Commits per committer: 19.983
Development Distribution Score (DDS): 0.822

Commits in past year: 0
Committers in past year: 0
Avg Commits per committer in past year: 0.0
Development Distribution Score (DDS) in past year: 0.0

Name Email Commits
David Waern d****n@g****m 639
simonmar u****n 450
Łukasz Hanuszczak l****k@g****m 282
davve d****e@d****e 189
Simon Hengel s****l@t****t 178
Alec Theriault a****t@g****m 167
Mateusz Kowalczyk f****u@f****k 155
alexbiehl a****l@g****m 134
Ben Gamari b****n@s****g 128
Mark Lentczner m****l@g****m 126
Ian Lynagh i****o@e****i 104
Simon Peyton Jones s****j@m****m 62
Alan Zimmerman a****m@g****m 56
Herbert Valerio Riedel h****r@g****g 56
Ryan Scott r****t@g****m 48
Sylvain Henry s****n@h****r 44
Simon Jakobi s****i@g****m 40
Isaac Dupree i****d@i****g 40
Edward Z. Yang e****g@c****u 38
Hécate Moonlight h****b@g****n 32
Niklas Haas g****t@n****o 29
Simon Marlow s****r@m****m 27
Simon Marlow m****d@g****m 25
Vladislav Zavialov v****6@g****m 23
Oleg Grenrus o****s@i****i 18
Nuno Alexandre n****o@c****m 16
Matthew Pickering m****g@g****m 15
Richard Eisenberg e****r@c****u 15
Alexander Biehl a****l@n****m 15
Thomas Schilling n****o@g****m 13
and 150 more...

Issue and Pull Request metadata

Last synced: 1 day ago

Total issues: 950
Total pull requests: 714
Average time to close issues: 9 months
Average time to close pull requests: 3 months
Total issue authors: 285
Total pull request authors: 148
Average comments per issue: 3.09
Average comments per pull request: 2.56
Merged pull request: 482
Bot issues: 1
Bot pull requests: 38

Past year issues: 0
Past year pull requests: 0
Past year average time to close issues: N/A
Past year average time to close pull requests: N/A
Past year issue authors: 0
Past year pull request authors: 0
Past year average comments per issue: 0
Past year average comments per pull request: 0
Past year merged pull request: 0
Past year bot issues: 0
Past year bot pull requests: 0

More stats: https://issues.ecosyste.ms/repositories/lookup?url=https://github.com/haskell/haddock

Top Issue Authors

  • ghc-mirror (299)
  • sjakobi (51)
  • harpocrates (28)
  • RyanGlScott (25)
  • phadej (13)
  • ndmitchell (13)
  • bgamari (12)
  • Lysxia (11)
  • Kleidukos (10)
  • cartazio (9)
  • gbaz (9)
  • andreasabel (8)
  • ekmett (8)
  • shapr (7)
  • Fuuzetsu (7)

Top Pull Request Authors

  • harpocrates (110)
  • alexbiehl (64)
  • dependabot[bot] (38)
  • Kleidukos (35)
  • hsyl20 (31)
  • bgamari (21)
  • parsonsmatt (20)
  • RyanGlScott (19)
  • sjakobi (19)
  • philderbeast (17)
  • phadej (11)
  • Lysxia (10)
  • wz1000 (9)
  • int-index (9)
  • coot (9)

Top Issue Labels

  • bug (280)
  • major (161)
  • enhancement (151)
  • minor (127)
  • invalid (27)
  • duplicate (21)
  • critical (12)
  • backend:web (12)
  • wontfix (11)
  • trivial (11)
  • requires-ghc-changes (10)
  • good first issue (8)
  • help wanted (7)
  • bug:parser (5)
  • task (5)
  • spam (5)
  • v2.15.0 (4)
  • backend:hoogle (4)
  • CommonMark (3)
  • hi-haddock (3)
  • refactoring (3)
  • notenoughinfo (2)
  • enhancement:error messages (2)
  • backend:latex (2)
  • github_actions (1)
  • v2.14.1 (1)
  • Source hyperlinker (1)
  • ghc-8.6 (1)
  • data-export (1)
  • dependencies (1)

Top Pull Request Labels

  • dependencies (38)
  • javascript (12)
  • hi-haddock (8)
  • blocked-pending-ghc-changes (4)
  • github_actions (3)
  • squash+merge me (2)
  • CI (2)
  • ghc-8.6 (2)
  • hacktoberfest (1)
  • critical (1)
  • merge me (1)

Package metadata

proxy.golang.org: github.com/haskell/haddock

  • Homepage:
  • Status: removed
  • Documentation: https://pkg.go.dev/github.com/haskell/haddock#section-documentation
  • Licenses: bsd-2-clause
  • Latest release: v0.0.0-20240531144738-395f33bfc14b (published over 2 years ago)
  • Last Synced: 2026-09-26T07:00:51.294Z (1 day ago)
  • Versions: 1
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Rankings:
    • Dependent packages count: 4.152%
    • Average: 4.296%
    • Dependent repos count: 4.44%
hackage.haskell.org: haddock

This is Haddock, a tool for automatically generating documentation from annotated Haskell source code. It is primary intended for documenting library interfaces, but it should be useful for any kind of Haskell code. . Haddock lets you write documentation annotations next to the definitions of functions and types in the source code, in a syntax that is easy on the eye when writing the source code (no heavyweight mark-up). . Haddock understands Haskell's module system, so you can structure your code however you like without worrying that internal structure will be exposed in the generated documentation. For example, it is common to implement a library in several modules, but define the external API by having a single module which re-exports parts of these implementation modules. Using Haddock, you can still write documentation annotations next to the actual definitions of the functions and types in the library, but the documentation annotations from the implementation will be propagated to the external API when the documentation is generated. Abstract types and classes are handled correctly. In fact, even without any documentation annotations, Haddock can generate useful documentation from your source code. . Documentation for the haddock binary is available at readthedocs. .


Dependencies

haddock-api/resources/html/package-lock.json npm
  • 444 dependencies
haddock-api/resources/html/package.json npm
  • browserify ^14.5.0 development
  • gulp ^4.0.2 development
  • gulp-sourcemaps ^2.6.4 development
  • gulp-uglify ^3.0.1 development
  • tsify ^3.0.4 development
  • typescript ^2.9.2 development
  • vinyl-buffer ^1.0.1 development
  • vinyl-source-stream ^2.0.0 development
  • fuse.js ^3.3.0
  • preact ^8.3.1
.github/workflows/ci.yml actions
  • actions/cache v3 composite
  • actions/checkout v3 composite
  • haskell/actions/setup main composite
.github/workflows/hlint-ci.yml actions
  • actions/checkout v3 composite
  • rwe/actions-hlint-run v2 composite
  • rwe/actions-hlint-setup v1 composite
haddock.cabal hackage
  • haddock * build
  • array *
  • base >=4.13.0.0 && <4.14 || >=4.14.0.0 && <4.15 || >=4.15.0.0 && <4.16 || >=4.16.0.0 && <4.17 || >=4.17.0.0 && <4.18
  • bytestring *
  • containers *
  • deepseq *
  • directory *
  • exceptions *
  • filepath *
  • ghc ==9.4.*
  • ghc-boot *
  • ghc-boot-th *
  • haddock-api ==2.27.0
  • mtl *
  • parsec *
  • text *
  • transformers *
  • xhtml ==3000.2.*
  • base * test
  • filepath * test
  • haddock-test ==0.0.1 test
haddock-api/haddock-api.cabal hackage
  • hspec-discover ==2.9.* build
  • array *
  • base >=4.16.0 && <4.17
  • bytestring *
  • containers *
  • deepseq *
  • directory *
  • exceptions *
  • filepath *
  • ghc ==9.4.*
  • ghc-boot *
  • ghc-paths >=0.1.0.9 && <0.2
  • haddock-library ==1.11.*
  • mtl *
  • parsec >=3.1.13.0 && <3.2
  • transformers *
  • xhtml >=3000.2.2 && <3000.3
  • QuickCheck ==2.14.* test
  • array * test
  • base * test
  • bytestring * test
  • containers * test
  • deepseq * test
  • directory * test
  • exceptions * test
  • filepath * test
  • ghc ==9.4.* test
  • ghc-boot * test
  • ghc-boot-th * test
  • ghc-paths >=0.1.0.12 && <0.2 test
  • haddock-library ==1.11.* test
  • hspec ==2.9.* test
  • mtl * test
  • parsec >=3.1.13.0 && <3.2 test
  • transformers * test
  • xhtml >=3000.2.2 && <3000.3 test