我在markdown文件中遇到问题,因为它说行超过限制。
MD013/line-length Line length [Expected: 80; Actual: 181]
行是:
Please refer [link](https://github.com/orchestracities/ngsi-timeseries-api/blob/master/docs/manuals/admin/configuration.md#environment-variables) for more info about those variables
我怎样才能在不跨越80
的限制中添加超链接,因为我不能拆分上面添加的超链接,并且必须在预期长度80内获得它。
对于那些正在寻找更通用的解决方案的人来说。
首先,在项目的根目录下创建一个.markdownlint.json
文件,包含以下内容:
{
"MD013": {
"line_length": 80,
"code_block_line_length": 120
}
}
你现在可以设置你的行长度为任何你喜欢的!
好运。
您可以使用引用样式的链接。参考样式链接不受linter的行长度规则的限制。它们以后也更容易阅读/编辑。
Please refer [link][1] for more info about those variables
[1]: https://github.com/orchestracities/ngsi-timeseries-api/blob/master/docs/manuals/admin/configuration.md#environment-variables