Skip to content

Commit c324af1

Browse files
chore(deps): update dependency @changesets/changelog-github to ^0.5.0 (#274)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: Yosuke Ota <[email protected]>
1 parent e97259d commit c324af1

File tree

5 files changed

+14
-13
lines changed

5 files changed

+14
-13
lines changed

docs/.vitepress/theme/components/rules/index.js

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -77,12 +77,12 @@ categories.sort((a, b) =>
7777
a.categoryOrder > b.categoryOrder
7878
? 1
7979
: a.categoryOrder < b.categoryOrder
80-
? -1
81-
: a.title > b.title
82-
? 1
83-
: a.title < b.title
84-
? -1
85-
: 0,
80+
? -1
81+
: a.title > b.title
82+
? 1
83+
: a.title < b.title
84+
? -1
85+
: 0,
8686
);
8787

8888
export const DEFAULT_RULES_CONFIG = allRules.reduce((c, r) => {

lib/rules/valid-json-number.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -116,8 +116,8 @@ export default createRule("valid-json-number", {
116116
text[1].toLowerCase() === "x"
117117
? "invalidHex"
118118
: text[1].toLowerCase() === "b"
119-
? "invalidBinary"
120-
: "invalidOctal",
119+
? "invalidBinary"
120+
: "invalidOctal",
121121
fix: buildFix(node),
122122
});
123123
return;

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@
7676
},
7777
"devDependencies": {
7878
"@babel/eslint-parser": "^7.11.0",
79-
"@changesets/changelog-github": "^0.4.6",
79+
"@changesets/changelog-github": "^0.5.0",
8080
"@changesets/cli": "^2.24.2",
8181
"@ota-meshi/eslint-plugin": "^0.15.0",
8282
"@ota-meshi/site-kit-eslint-editor-vue": "^0.1.2",
Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
{
22
"root": true,
3-
"extends": ["eslint:all"],
4-
"rules": {}
3+
"rules": {
4+
"indent": "error"
5+
}
56
}

tools/update-docs.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -161,10 +161,10 @@ ${
161161
<sup>Taken with ❤️ [from ESLint core](https://eslint.org/docs/rules/${ruleName})</sup>
162162
`
163163
: typeof extensionRule === "string"
164-
? `
164+
? `
165165
<sup>Taken with ❤️ [from ESLint core](https://eslint.org/docs/rules/${extensionRule})</sup>
166166
`
167-
: `
167+
: `
168168
<sup>Taken with ❤️ [from ${extensionRule.plugin}](${extensionRule.url})</sup>
169169
`
170170
: ""

0 commit comments

Comments
 (0)