-
Notifications
You must be signed in to change notification settings - Fork 9
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
Add 'contributing' and 'code reference' docs to repo #29
Conversation
============ | ||
|
||
Code of Conduct | ||
--------------- |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I would probably just link to the sunpy one.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Okay, sure
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I ended up doing something a little different as it felt a bit odd to use the same licence for the Code of Conduct
for glue-solar
with sunpy
, so I adapted the sunpy
one. Hope this arrangement is okay with you.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Should be ok.
0256683
to
fca4737
Compare
7ffe2dd
to
195a900
Compare
e4291c8
to
e74bcd6
Compare
# -- Turn on nitpicky mode for sphinx (to warn about references not found) ---- | ||
# | ||
# nitpicky = True | ||
# nitpick_ignore = [] | ||
# | ||
# Some warnings are impossible to suppress, and you can list specific references | ||
# that should be ignored in a nitpick-exceptions file which should be inside | ||
# the docs/ directory. The format of the file should be: | ||
# | ||
# <type> <class> | ||
# | ||
# for example: | ||
# | ||
# py:class astropy.io.votable.tree.Element | ||
# py:class astropy.io.votable.tree.SimpleElement | ||
# py:class astropy.io.votable.tree.SimpleElementWithContent | ||
# | ||
# Uncomment the following lines to enable the exceptions: | ||
# | ||
# for line in open('nitpick-exceptions'): | ||
# if line.strip() == "" or line.startswith("#"): | ||
# continue | ||
# dtype, target = line.split(None, 1) | ||
# target = target.strip() | ||
# nitpick_ignore.append((dtype, six.u(target))) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Why is this here?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It is for in case we will need to use it in the future to turn on nitpicky
. I have used it for some astropy
docs before, and thought we might need it someday if our docs grow larger in size and there might be some problems that can only be resolved by nitpick-exceptions
.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
A few very minor changes.
Co-authored-by: Nabil Freij <nabil.freij@gmail.com>
Thanks @nabobalis! Suggested changes committed and waiting for tests to pass. |
Co-authored-by: Nabil Freij <nabil.freij@gmail.com>
Appreciate it @nabobalis |
Description
Add the remaining main documentation to
docs
, includingcontributing
andcode reference
, to supplement theuser's guide
anddeveloper's guide
already added to repo.