* fix: move vue app to parent dir * test: prepare vue for cypress testing * test: add basic cypress test for vue app * test: add agenda-neue header tests * test: meeting generator for cypress tests (wip) * test: agenda-neue meeting nav + settings button * test: agenda-neue check settings button position against viewport size * test: agenda-neue fix viewport + add schedule list header tests * test: agenda-neue timezone tests + future meeting template * test: agenda-neue add test floor plan image fixtures * test: floor-plan-neue - handle floor plan images * test: floor-plan-neue room selection + pin drop tests * test: floor-plan-neue - test all viewports * test: floor-plan-neue add missing header tests * test: agenda-neue - generate areas + groups * test: agenda-neue - test filter areas + groups dialog * test: agenda-neue code cleanup + generate schedule (wip) * test: agenda-neue - generate schedule (wip) * test: agenda-neue - generate schedule + test settings dialog (wip) * test: agenda-neue - settings timezone controls * test: agenda-neue - settings toggles + agenda table headers tests * test: agenda-neue - table events + memory fixes * test - agenda-neue - table events remaining columns tests * test: agenda-neue - meeting materials dialog + future schedule list table buttons * test: agenda-neue - remove skips * test: agenda-neue - search * test: agenda-neue - remove skips * test: agenda-neue - use random seed for deterministic results * test: agenda-neue - set constant clock * test: add percy to cypress + upgrade cypress * test: agenda-neue - jump to day tests * test: agenda-neue - add to calendar tests * test: agenda-neue - add pick sessions tests * test: agenda-neue - calendar view tests * test: agenda-neue - color assignment tests * test: agenda-neue - skip test not supported in firefox/safari * test: agenda-neue - live sessions tests * test: agenda-neue - smaller screens tests * chore: update workflows to handle modern + legacy cypress tests * test: fix legacy agenda weekview test + cypress legacy config
53 lines
1.2 KiB
INI
53 lines
1.2 KiB
INI
# EditorConfig helps developers define and maintain consistent
|
|
# coding styles between different editors and IDEs
|
|
# editorconfig.org
|
|
|
|
root = true
|
|
|
|
# Global settings for IETF datatracker
|
|
# ---------------------------------------------------------
|
|
# PEP8 Style
|
|
|
|
[*]
|
|
indent_size = 4
|
|
indent_style = space
|
|
charset = utf-8
|
|
trim_trailing_whitespace = false
|
|
insert_final_newline = true
|
|
|
|
# Specializations below *add to* the above defaults
|
|
|
|
# Settings for .github folder
|
|
# ---------------------------------------------------------
|
|
# GitHub Markdown Style
|
|
|
|
[.github/**]
|
|
indent_size = 2
|
|
|
|
# Settings for client-side JS / Vue files
|
|
# ---------------------------------------------------------
|
|
# StandardJS Style
|
|
|
|
[client/**]
|
|
indent_size = 2
|
|
|
|
[dev/**.js]
|
|
indent_size = 2
|
|
|
|
[{package.json,.eslintrc.js,.yarnrc.yml,vite.config.js,cypress.config.js}]
|
|
indent_size = 2
|
|
|
|
# Settings for cypress tests
|
|
# ---------------------------------------------------------
|
|
# StandardJS Style
|
|
|
|
[cypress/**]
|
|
indent_size = 2
|
|
|
|
# Settings for HTML templates
|
|
# ---------------------------------------------------------
|
|
# HTML should not have final newlines, because that causes visible whitespace when includes are rendered
|
|
|
|
[ietf/**.html]
|
|
insert_final_newline = false
|