gpt4 book ai didi

javascript - 强制(修复)导入完全在一行中

转载 作者:行者123 更新时间:2023-12-05 06:10:40 29 4
gpt4 key购买 nike

我有以下 eslint 配置:

   "object-curly-newline": ["error", {
"ImportDeclaration": "never",
"ExportDeclaration": "never"
}],

转换:

import { 
something,
somethingelse,
} from "../here";

import { something,
somethingelse, } from "../here";

但我想得到我的导入,所以它会变成一行。像这样:

import { something, somethingelse, } from "../here";

有没有办法在“object-curly-newline”中做到这一点?或者我可以通过其他规则来完成它吗?我已经尝试了各种其他属性,但没有任何运气。

最佳答案

我相信这可能与 object-curly-newlinemultiline 设置有关,具体取决于您的设置。

"multiline": true requires line breaks if there are line breaks insideproperties or between properties. Otherwise, it disallows line breaks.

这就是我在我的情况中注意到的。

enter image description here

通过将鼠标悬停在红色或黄色下划线上方,您可以在保存前查看适用的规则。在我的例子中,这些显示在花括号下面。

关于javascript - 强制(修复)导入完全在一行中,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/64358284/

29 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com