stylelint的不同配置格式有什么区别
What's the difference between different configuration formats of stylelint
配置 stylelint 有很多选项,比如
- package.json
中的 stylelint 属性
- .stylelintrc.json, .stylelintrc.yaml, .stylelintrc.js 等
- 一个stylelint.config.js个文件
我在决定使用哪一个时有什么不同吗?
官方文档说:"You may want to use an extension so that your text editor can better interpret the file, and help with syntax checking and highlighting."除此之外还有什么区别吗?
谢谢!
stylelint 使用 cosmiconfig,您提到的所有选项都可以通过 cosmiconfig 获得。
所以它更多的是关于灵活性,并为 stylelint 用户提供个人选择,以选择他们认为最合适的文件名和格式。
每种格式都得到完全支持,并且与提供不同功能的不同格式没有其他区别,它们都支持所有 stylelints 配置选项开箱即用
配置 stylelint 有很多选项,比如
- package.json 中的 stylelint 属性
- .stylelintrc.json, .stylelintrc.yaml, .stylelintrc.js 等
- 一个stylelint.config.js个文件
我在决定使用哪一个时有什么不同吗? 官方文档说:"You may want to use an extension so that your text editor can better interpret the file, and help with syntax checking and highlighting."除此之外还有什么区别吗?
谢谢!
stylelint 使用 cosmiconfig,您提到的所有选项都可以通过 cosmiconfig 获得。
所以它更多的是关于灵活性,并为 stylelint 用户提供个人选择,以选择他们认为最合适的文件名和格式。
每种格式都得到完全支持,并且与提供不同功能的不同格式没有其他区别,它们都支持所有 stylelints 配置选项开箱即用