mirror of
https://github.com/kanidm/kanidm.git
synced 2025-02-22 20:26:30 +01:00
* feat(ci/dev): adding npm/eslint config for javascript linting * feat(ci/dev): adding js-prettier config for consistency in formatting * fix(css): linting * fix(js): linting the js things
22 lines
293 B
INI
22 lines
293 B
INI
# Documentation: https://editorconfig.org/
|
|
|
|
root = true
|
|
|
|
|
|
|
|
[*.md]
|
|
charset = utf-8
|
|
end_of_line = lf
|
|
indent_size = 2
|
|
max_line_length = 100
|
|
trim_trailing_whitespace = true
|
|
|
|
[*.js]
|
|
tab_width = 4
|
|
max_line_length = 120
|
|
print_width = 120
|
|
|
|
[*.mjs]
|
|
tab_width = 4
|
|
max_line_length = 120
|
|
print_width = 120 |