Skip to content
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ From the command line run `apm install docblock-python`. You can also install it

## Available styles

* Numpy style: [A Guide to NumPy/SciPy Documentation](https://github.com/numpy/numpy/blob/master/doc/HOWTO_DOCUMENT.rst.txt).
* Numpy style: [A Guide to NumPy/SciPy Documentation](https://numpydoc.readthedocs.io/en/latest/format.html#docstring-standard).
* Google style: [Google Python Style Guide](http://google.github.io/styleguide/pyguide.html).
* Sphinx style: [Sphinx documentation](http://www.sphinx-doc.org/en/master/usage/restructuredtext/domains.html#info-field-lists).
* Epytext style: [Epytext documentation](http://epydoc.sourceforge.net/epytext.html).
Expand Down
16 changes: 16 additions & 0 deletions lib/base.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
'use babel';
/* eslint-disable require-jsdoc*/

import packageConfig from './config.json';

export default {
config: packageConfig,
options: {},
subscriptions: null,
accepted_starts: ['def', 'class', 'async def'],
stop_words: ['def', 'cdef'],
ordered_sections: [
'Parameters', 'Returns', 'Other Parameters', 'Raises',
'See Also', 'Notes', 'References', 'Examples',
],
};
Loading