Skip to content

Commit 6fb5774

Browse files
Added contributions guidelines to HACKING.md
1 parent 2068146 commit 6fb5774

File tree

1 file changed

+24
-0
lines changed

1 file changed

+24
-0
lines changed

HACKING.md

+24
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,30 @@ Hopefully this guide should make it easy to do so! Feel free to ask any
66
questions on the Agda mailing list. Before you start please read the
77
[style-guide](https://github.com/agda/agda-stdlib/blob/master/notes/style-guide.md).
88

9+
What is an acceptable contribution?
10+
===================================
11+
12+
- The contribution should be useful in a diverse set of areas.
13+
14+
- The bar for accepting contributions that use the FFI to depend on external
15+
(i.e. Haskell, JavaScript) packages is much higher.
16+
17+
- If the same concept already exists in the library, there needs to be a *very* good
18+
reason to add a different formalisation.
19+
20+
- There should be evidence that the code works. Usually this will be proofs, but sometimes
21+
for purely computational contributions this will involve adding tests.
22+
23+
- It should use the minimal set of Agda features, i.e. it should normally use
24+
the Agda option pragmas `--without-K` and `--safe`, with the occasional use of
25+
`--with-K`, `--sized`, `--guardedness` in certain situations.
26+
27+
In general, if something is in a general undergraduate Computer Science or Mathematics
28+
textbook it is probably (!) contributable.
29+
30+
Setup
31+
=====
32+
933
The typical workflow when contributing to the standard library's repository
1034
is to interact with two remote versions of the repository:
1135

0 commit comments

Comments
 (0)