What is [Makefile] and " end_of_line " in editorconfig?

Viewed 3417

What is [Makefile] in .editconfig file? It's not explained well in any of the websites. Can anyone explain about it? Also what do the values of " end_of_line " in editorconfig mean? The values are mentioned as lf, cr, or crlf but what does that describe?

1 Answers

Entries in square brackets ([]) are patterns of files the following rules should apply to. [Makefile] is a simple pattern with no wildcards that matches the name "Makefile" exactly. It refers to common makefiles.

The end_of_line entry refers to the character(s) that is used to signify an end of a line.

Related