我如何确保 ESLint 中没有换行符
How would I insure NO newline in ESLint
来自 ESLint:
http://eslint.org/docs/rules/eol-last.html
您可以禁用验证每个文件是否有换行尾的检查。但是,似乎没有 equal/opposite 规则。我如何使用 ESLint 确保我的文件末尾没有换行符?这可能吗?
您应该可以使用规则 no-multiple-empty-lines
。
"no-multiple-empty-lines": [2, {"max": 99999, "maxEOF": 0}]
max
sets the maximum number of consecutive blank lines.
maxEOF
can be used to set a different number for the end of file. The
last blank lines will then be treated differently. If omitted, the max
option is applied everywhere.
假设您不关心代码之间的空行数,只需将 max
设置为一个较大的数字即可。
来自 ESLint:
http://eslint.org/docs/rules/eol-last.html
您可以禁用验证每个文件是否有换行尾的检查。但是,似乎没有 equal/opposite 规则。我如何使用 ESLint 确保我的文件末尾没有换行符?这可能吗?
您应该可以使用规则 no-multiple-empty-lines
。
"no-multiple-empty-lines": [2, {"max": 99999, "maxEOF": 0}]
max
sets the maximum number of consecutive blank lines.
maxEOF
can be used to set a different number for the end of file. The last blank lines will then be treated differently. If omitted, the max option is applied everywhere.
假设您不关心代码之间的空行数,只需将 max
设置为一个较大的数字即可。