How to set "the first line of the block statement is empty and the end of the line is not empty" in the eslint rules?
padded-blocks
padded-blocks seems to only be able to set all blank lines, or no blank lines
闭关修行中......
Only blank lines and non-blank lines can be set in ordinary {} block-level statements
{ "blocks": "always" }//或者{ "blocks": "never" }
Other setting methods will ignore the general {} and only use the block-level statements of special methods, such as:
{ "classes": "always" }//只管class中的constructor{}前后是否空行
{ "switches": "always" }//只管switch里case前后空行
But no matter which way it is, setting a blank line at the beginning of the line alone will not work
Only blank lines and non-blank lines can be set in ordinary {} block-level statements
Other setting methods will ignore the general {} and only use the block-level statements of special methods, such as:
But no matter which way it is, setting a blank line at the beginning of the line alone will not work