我与Rider和C#结合使用Editorconfig(https://editorconfig.org/)。我想调整代码样式设置,以使函数中的所有参数在参数列表内部存在换行符的情况下被强制与参数列表的第一个参数对齐。
所以代替:
MyFunction(a,b,c,
d,e)
我想要:
MyFunction(a,b,c,
d,e)
是否存在一个EditorConfig C#选项来强制执行此样式?我浏览了文档和C#手册(https://docs.microsoft.com/en-us/visualstudio/ide/editorconfig-code-style-settings-reference?view=vs-2017#example-editorconfig-file),但找不到针对这种情况的解决方案。