-
Notifications
You must be signed in to change notification settings - Fork 251
[ fix #1743 ] move README to doc/
directory
#2184
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
00dc06c
7eaabc2
98843ee
8c055de
dd6cf79
ad47e19
04f3be1
561d924
ec1c00d
059c659
f7f8e5d
5f3f0b3
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -244,23 +244,14 @@ you are never committing anything with a whitespace violation: | |
Type-checking the README directory | ||
---------------------------------- | ||
|
||
* By default the README directory is not exported in the | ||
`standard-library.agda-lib` file in order to avoid clashing with other people's | ||
README files. This means that by default type-checking a file in the README | ||
directory fails. | ||
|
||
* If you wish to type-check a README file, then you will need to change the line: | ||
``` | ||
include: src | ||
``` | ||
to | ||
``` | ||
include: src . | ||
``` | ||
in the `standard-library.agda-lib` file. | ||
|
||
* Please do not include this change in your pull request. | ||
|
||
* By default the README files are not exported in the | ||
`standard-library.agda-lib` file in order to avoid | ||
clashing with other people's README files. | ||
|
||
* If you wish to type-check a README file, then you will | ||
need to change the present working directory to `doc/` | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. So, I've been thinking a lot (if not 'hard') about this, and I don't know if it makes more, or less, sense, to have the Alternatively, leave the entire existing In other words, the change could be less invasive still simply by moving toplevel There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Many modules in There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I think because the There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. The
I might be wrong, but including There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Ah... ok, perhaps you're right. In any case, I would prefer simply to have the There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I think that should work. |
||
where an appropriate `standard-library-doc.agda-lib` | ||
file is present. | ||
|
||
Continuous Integration (CI) | ||
=========================== | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
* |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
# Development playground | ||
|
||
This directory allows you to develop modules against the current dev | ||
version of the stdlib as it currently sits in `src/`. |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
name: standard-library-dev | ||
include: . ../src | ||
flags: | ||
--warning=noUnsupportedIndexedMatch | ||
jamesmckinna marked this conversation as resolved.
Show resolved
Hide resolved
|
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
name: standard-library-doc | ||
include: . ../src | ||
flags: | ||
--warning=noUnsupportedIndexedMatch |
Uh oh!
There was an error while loading. Please reload this page.