Skip to content

Commit

Permalink
Fix stylistic rule semi key error
Browse files Browse the repository at this point in the history
Value "always" should be boolean.
  • Loading branch information
Splines committed Jan 23, 2025
1 parent cfb0e17 commit 29b0244
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion eslint.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ const customizedStylistic = stylistic.configs.customize({
"indent": 2,
"jsx": false,
"quote-props": "always",
"semi": "always",
"semi": true,
"brace-style": "1tbs",
});

Expand Down
2 changes: 1 addition & 1 deletion tests/eslint.test.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ const customizedStylistic = stylistic.configs.customize({
"indent": 2,
"jsx": false,
"quote-props": "always",
"semi": "always",
"semi": true,
"brace-style": "1tbs",
});

Expand Down

0 comments on commit 29b0244

Please sign in to comment.