惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

腾讯CDC
Microsoft Azure Blog
Microsoft Azure Blog
L
LangChain Blog
Y
Y Combinator Blog
Microsoft Security Blog
Microsoft Security Blog
宝玉的分享
宝玉的分享
B
Blog RSS Feed
MongoDB | Blog
MongoDB | Blog
Jina AI
Jina AI
D
Docker
B
Blog
Engineering at Meta
Engineering at Meta
Last Week in AI
Last Week in AI
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
I
InfoQ
G
Google Developers Blog
博客园 - Franky
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
The GitHub Blog
The GitHub Blog
T
The Blog of Author Tim Ferriss
大猫的无限游戏
大猫的无限游戏
阮一峰的网络日志
阮一峰的网络日志
U
Unit 42

Recent Commits to jekyll:master

fix: update clean command to take account of the keep_files option (#… · jekyll/jekyll@74d7513 docs: add DeployHQ to third-party deployment providers (#9991) · jekyll/jekyll@7697d24 docs: update wsl installation procedure (#9968) · jekyll/jekyll@202df57 fix: Run release-please workflow only in jekyll/jekyll repo (#9969) · jekyll/jekyll@d68f76e feat!: Streamline the release process for Jekyll (#9760) · jekyll/jekyll@5cf05d7 Update history to reflect merge of #9960 [ci skip] · jekyll/jekyll@08c22ee Add GitCMS to resources docs (#9960) · jekyll/jekyll@3ed83f6 Update history to reflect merge of #9954 [ci skip] · jekyll/jekyll@ff0d4dd build: fix broken CI on newer rubies (#9954) · jekyll/jekyll@65d534a Update history to reflect merge of #9925 [ci skip] · jekyll/jekyll@baab7bf Allow configuring future metadata for individual collections (#9925) · jekyll/jekyll@f07d4f7 Update history to reflect merge of #9914 [ci skip] · jekyll/jekyll@d0cf179 Update history to reflect merge of #9920 [ci skip] · jekyll/jekyll@26ec089 Add logger to Gemfile for Ruby 4.0 (#9920) · jekyll/jekyll@7e79e46 Update history to reflect merge of #9923 [ci skip] · jekyll/jekyll@b49aa9b Bump supported versions (#9923) · jekyll/jekyll@ebe567c Update history to reflect merge of #9897 [ci skip] · jekyll/jekyll@4d3db3a Update WDM (0.1.1 → 0.2.0) in the Windows docs (#9897) · jekyll/jekyll@6da6739 Update history to reflect merge of #9912 [ci skip] · jekyll/jekyll@161f654 docs: Update contributor badge in README to include avatar height and… · jekyll/jekyll@e1b5fd6 Update history to reflect merge of #9889 [ci skip] · jekyll/jekyll@2fe6977
Add .ruby-lsp to default excludes (#9914) · jekyll/jekyll...
jekyll · 2026-02-14 · via Recent Commits to jekyll:master

Lines changed: 1 addition & 1 deletion

Original file line numberDiff line numberDiff line change

@@ -253,7 +253,7 @@ def add_default_collections

253253

end

254254
255255

DEFAULT_EXCLUDES = %w(

256-

.sass-cache .jekyll-cache

256+

.sass-cache .jekyll-cache .ruby-lsp

257257

gemfiles Gemfile Gemfile.lock

258258

node_modules

259259

vendor/bundle/ vendor/cache/ vendor/gems/ vendor/ruby/

Lines changed: 1 addition & 0 deletions

Original file line numberDiff line numberDiff line change

@@ -73,6 +73,7 @@ class TestConfiguration < JekyllUnitTest

7373

exclude = @config["exclude"]

7474

assert_includes exclude, ".sass-cache"

7575

assert_includes exclude, ".jekyll-cache"

76+

assert_includes exclude, ".ruby-lsp"

7677

end

7778

end

7879