datatracker/.editorconfig
Nicolas Giard 395f110df2
feat(agenda): various agenda improvements and fixes (#4613)
* chore: update dependencies + add jsconfig

* fix(agenda): handle localStorage being disabled

* feat: agenda share modal

* feat: agenda tour

* feat: agenda share filters + picked sessions + fixes

* test: fix agenda tests

* test: add agenda share dialog test

* test: remove agenda only flag
2022-10-21 16:04:32 -05:00

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,jsconfig.json}]
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