chore: adjust editorconfig rules and linting configurations

- remove rule for .travis.yml}
- exclude `^web/public/vs/` in editorconfig-checker
pull/19023/head
QuantumGhost 1 year ago
parent f6c495af54
commit bc8aa2a9c3

@ -22,7 +22,9 @@ indent_size = 2
indent_size = 4 indent_size = 4
indent_style = space indent_style = space
[*.md] # Markdown and MDX are whitespace sensitive languages.
# Do not remove trailing spaces.
[*.{md,mdx}]
trim_trailing_whitespace = false trim_trailing_whitespace = false
# Matches multiple files with brace expansion notation # Matches multiple files with brace expansion notation
@ -31,7 +33,7 @@ trim_trailing_whitespace = false
indent_style = space indent_style = space
indent_size = 2 indent_size = 2
# Matches the exact files either package.json or .travis.yml # Matches the exact files package.json
[{package.json,.travis.yml}] [package.json]
indent_style = space indent_style = space
indent_size = 2 indent_size = 2

@ -4,7 +4,11 @@
"IgnoreDefaults": false, "IgnoreDefaults": false,
"SpacesAfterTabs": false, "SpacesAfterTabs": false,
"NoColor": false, "NoColor": false,
"Exclude": [], "Exclude": [
"^web/public/vs/",
"^web/public/pdf.worker.min.mjs$",
"web/app/components/base/icons/src/vender/"
],
"AllowedContentTypes": [], "AllowedContentTypes": [],
"PassedFiles": [], "PassedFiles": [],
"Disable": { "Disable": {

Loading…
Cancel
Save