Commit 6bdbd8c5 authored by Jakob Moser's avatar Jakob Moser
Browse files

Configure prettier

parent ee266d73
Loading
Loading
Loading
Loading

.prettierignore

0 → 100644
+36 −0
Original line number Diff line number Diff line
# Python-related
venv/
.venv/
__pycache__/
.mypy_cache/

# JavaScript-related
node_modules

# Tests
.coverage
.pytest_cache/
htmlcov/
testresults.xml

# PyCharm configuration
.idea/

# VS Code configuration
/*.code-workspace

# Local instance data and configuration
instance/

# Environment files (might contain secrets)
.env

# Mock data generator spreadsheet (not needed in repo, use the provided SQLite db)
/mock_data_generator.ods

# Libraries (whose code should not be touched)
schwalbe/static/lib
pdf_generator/static/lib

# HTML templates (to which the formatter does more bad than good)
templates

.prettierrc.json

0 → 100644
+5 −0
Original line number Diff line number Diff line
{
    "tabWidth": 4,
    "semi": false,
    "arrowParens": "avoid"
}