Skip to content

Commit

Permalink
Update gh-pages
Browse files Browse the repository at this point in the history
  • Loading branch information
yagebu committed Sep 19, 2021
0 parents commit 6fbf3cd
Show file tree
Hide file tree
Showing 51 changed files with 23,845 additions and 0 deletions.
24 changes: 24 additions & 0 deletions .editorconfig
@@ -0,0 +1,24 @@
# EditorConfig: http://EditorConfig.org

# top-most EditorConfig file
root = true

[*]
charset = utf-8
end_of_line = lf
indent_size = 4
indent_style = space
insert_final_newline = true
trim_trailing_whitespace = true

[Makefile]
indent_style = tab

[*.md]
trim_trailing_whitespace = false

[{package.json,.travis.yml}]
indent_size = 2

[*.{js,ts,css,html,svelte}]
indent_size = 2
26 changes: 26 additions & 0 deletions .gitignore
@@ -0,0 +1,26 @@
/*cache
/.coverage
/.eggs
/.tox
/build/
/pip-wheel-metadata/
/dist/
/docs/api/
/src/fava/static/*
!/src/fava/static/favicon.ico
/src/fava/translations/messages.pot
/src/fava.egg-info
/htmlcov
/venv

/.idea/
/.vscode/

node_modules
*.pyc
*.so
*.mo
.DS_Store
.env
TODO
npm-debug.log
Empty file added .nojekyll
Empty file.
37 changes: 37 additions & 0 deletions .pre-commit-config.yaml
@@ -0,0 +1,37 @@
repos:
- repo: https://github.com/psf/black
rev: 21.8b0
hooks:
- id: black
- repo: https://github.com/asottile/reorder_python_imports
rev: v2.6.0
hooks:
- id: reorder-python-imports
args: ["--application-directories=.:src"]
- repo: https://gitlab.com/pycqa/flake8
rev: 3.9.2
hooks:
- id: flake8
- repo: https://github.com/asottile/pyupgrade
rev: v2.25.0
hooks:
- id: pyupgrade
args: ["--py36-plus"]
- repo: local
hooks:
- id: prettier
name: prettier
language: node
entry:
./frontend/node_modules/prettier/bin-prettier.js --write
--list-different --ignore-unknown
- id: stylelint
name: stylelint
language: node
entry: ./frontend/node_modules/stylelint/bin/stylelint.js --fix
files: \.(css|svelte)$
- id: eslint
name: eslint
language: node
entry: ./frontend/node_modules/eslint/bin/eslint.js --max-warnings 0
files: \.(js|ts|svelte)$
2 changes: 2 additions & 0 deletions .prettierignore
@@ -0,0 +1,2 @@
src/fava/**/*.html
package-lock.json
3 changes: 3 additions & 0 deletions .prettierrc.json
@@ -0,0 +1,3 @@
{
"proseWrap": "always"
}
10 changes: 10 additions & 0 deletions _sources/api.rst.txt
@@ -0,0 +1,10 @@
API Documentation
=================

.. note:: There's no stability guarantee as this is just for internal purposes currently.

.. toctree::
:glob:

api/fava*

105 changes: 105 additions & 0 deletions _sources/api/fava.core.rst.txt
@@ -0,0 +1,105 @@
fava.core
=========

.. automodule:: fava.core

fava.core._compat
-----------------

.. automodule:: fava.core._compat

fava.core.accounts
------------------

.. automodule:: fava.core.accounts

fava.core.attributes
--------------------

.. automodule:: fava.core.attributes

fava.core.budgets
-----------------

.. automodule:: fava.core.budgets

fava.core.charts
----------------

.. automodule:: fava.core.charts

fava.core.conversion
--------------------

.. automodule:: fava.core.conversion

fava.core.documents
-------------------

.. automodule:: fava.core.documents

fava.core.entries_by_type
-------------------------

.. automodule:: fava.core.entries_by_type

fava.core.extensions
--------------------

.. automodule:: fava.core.extensions

fava.core.fava_options
----------------------

.. automodule:: fava.core.fava_options

fava.core.file
--------------

.. automodule:: fava.core.file

fava.core.filters
-----------------

.. automodule:: fava.core.filters

fava.core.ingest
----------------

.. automodule:: fava.core.ingest

fava.core.inventory
-------------------

.. automodule:: fava.core.inventory

fava.core.misc
--------------

.. automodule:: fava.core.misc

fava.core.module_base
---------------------

.. automodule:: fava.core.module_base

fava.core.number
----------------

.. automodule:: fava.core.number

fava.core.query_shell
---------------------

.. automodule:: fava.core.query_shell

fava.core.tree
--------------

.. automodule:: fava.core.tree

fava.core.watcher
-----------------

.. automodule:: fava.core.watcher

5 changes: 5 additions & 0 deletions _sources/api/fava.ext.portfolio_list.rst.txt
@@ -0,0 +1,5 @@
fava.ext.portfolio_list
=======================

.. automodule:: fava.ext.portfolio_list

10 changes: 10 additions & 0 deletions _sources/api/fava.ext.rst.txt
@@ -0,0 +1,10 @@
fava.ext
========

.. automodule:: fava.ext

fava.ext.auto_commit
--------------------

.. automodule:: fava.ext.auto_commit

5 changes: 5 additions & 0 deletions _sources/api/fava.help.rst.txt
@@ -0,0 +1,5 @@
fava.help
=========

.. automodule:: fava.help

15 changes: 15 additions & 0 deletions _sources/api/fava.plugins.rst.txt
@@ -0,0 +1,15 @@
fava.plugins
============

.. automodule:: fava.plugins

fava.plugins.link_documents
---------------------------

.. automodule:: fava.plugins.link_documents

fava.plugins.tag_discovered_documents
-------------------------------------

.. automodule:: fava.plugins.tag_discovered_documents

40 changes: 40 additions & 0 deletions _sources/api/fava.rst.txt
@@ -0,0 +1,40 @@
fava
====

.. automodule:: fava

fava.application
----------------

.. automodule:: fava.application

fava.cli
--------

.. automodule:: fava.cli

fava.context
------------

.. automodule:: fava.context

fava.helpers
------------

.. automodule:: fava.helpers

fava.json_api
-------------

.. automodule:: fava.json_api

fava.serialisation
------------------

.. automodule:: fava.serialisation

fava.template_filters
---------------------

.. automodule:: fava.template_filters

30 changes: 30 additions & 0 deletions _sources/api/fava.util.rst.txt
@@ -0,0 +1,30 @@
fava.util
=========

.. automodule:: fava.util

fava.util.date
--------------

.. automodule:: fava.util.date

fava.util.excel
---------------

.. automodule:: fava.util.excel

fava.util.ranking
-----------------

.. automodule:: fava.util.ranking

fava.util.sets
--------------

.. automodule:: fava.util.sets

fava.util.typing
----------------

.. automodule:: fava.util.typing

0 comments on commit 6fbf3cd

Please sign in to comment.