Skip to content

Commit

Permalink
fix: 修复stylelintignore文件规则有空格失效的问题 (alibaba#12)
Browse files Browse the repository at this point in the history
* fix: 修复stylelintignore文件规则有空格失效的问题

* fix: 修复markdownlintignore 空格
  • Loading branch information
21paradox authored Mar 13, 2021
1 parent 2da1f81 commit 1749db9
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion packages/f2elint/src/config/_markdownlintignore.ejs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<%_ if (enableMarkdownlint) { _%>
<%_ markdownLintIgnores.forEach((txt) => { _%>
<%= txt %>
<%= txt %>
<% }) %>
<%_ } _%>
2 changes: 1 addition & 1 deletion packages/f2elint/src/config/_stylelintignore.ejs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<%_ if (enableStylelint) { _%>
<%_ stylelintIgnores.forEach((txt) => { _%>
<%= txt %>
<%= txt %>
<% }) %>
<%_ } _%>

0 comments on commit 1749db9

Please sign in to comment.