Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit b808484

Browse filesBrowse files
silverwindtargos
authored andcommitted
tools: change editorconfig's 'ignore' to 'unset'
According to https://editorconfig.org/#supported-properties the canonical way to disable a property is to set it to 'unset'. We did use 'ignore' and this generally works because tools ignore unknown values but some of them like `eclint` are picky on it. PR-URL: #28440 Reviewed-By: Rich Trott <rtrott@gmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Trivikram Kamat <trivikr.dev@gmail.com>
1 parent 4367732 commit b808484
Copy full SHA for b808484

File tree

Expand file treeCollapse file tree

1 file changed

+5
-5
lines changed
Open diff view settings
Filter options
Expand file treeCollapse file tree

1 file changed

+5
-5
lines changed
Open diff view settings
Collapse file

‎.editorconfig‎

Copy file name to clipboardExpand all lines: .editorconfig
+5-5Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -16,11 +16,11 @@ indent_size = 8
1616
indent_style = tab
1717

1818
[{deps}/**]
19-
charset = ignore
20-
end_of_line = ignore
21-
indent_size = ignore
22-
indent_style = ignore
23-
trim_trailing_whitespace = ignore
19+
charset = unset
20+
end_of_line = unset
21+
indent_size = unset
22+
indent_style = unset
23+
trim_trailing_whitespace = unset
2424

2525
[{test/fixtures,deps,tools/node_modules,tools/gyp,tools/icu,tools/msvs}/**]
2626
insert_final_newline = false

0 commit comments

Comments
0 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.