我有一个Laravel 5.8项目,我的.editorconfig
设置基于PHP编码(带有4个空格)和其他一些注意事项。我想知道是否有一种方法可以为我的resources/js
设置文件夹特定的配置,以适应不同的编码规则(例如2个空格)。
此外,是否可以在此项目中设置eslint以便不麻烦地抹掉我的js代码?
谢谢!
答案 0 :(得分:2)
据我所知,您可以在节名称的方括号内指定路径:
# Rules specified in this section matching all files
[*]
end_of_line = lf
insert_final_newline = true
[*.php]
indent_style = space
indent_size = 4
# Rules in here only match .js files inside your resources/js folder.
[resources/js/**.js]
indent_style = space
indent_size = 2
在editorconfig.com主页上了解更多信息。