Skip to content

Commit fe7b8da

Browse files
committed
Update repo URLs to solidjs-community
1 parent 6883c98 commit fe7b8da

24 files changed

+31
-31
lines changed

.eslintrc.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@
3636
"eslint-plugin/require-meta-docs-url": [
3737
"error",
3838
{
39-
"pattern": "https://github.com/joshwilsonvu/eslint-plugin-solid/blob/main/docs/{{name}}.md"
39+
"pattern": "https://github.com/solidjs-community/eslint-plugin-solid/blob/main/docs/{{name}}.md"
4040
}
4141
]
4242
}

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,9 @@
55
# Solid ESLint Plugin
66

77
[![npm version](https://img.shields.io/npm/v/eslint-plugin-solid?style=for-the-badge)](https://npmjs.com/packages/eslint-plugin-solid)
8-
[![GitHub package version](https://img.shields.io/github/package-json/v/joshwilsonvu/eslint-plugin-solid?style=for-the-badge)](https://github.com/joshwilsonvu/eslint-plugin-solid)
8+
[![GitHub package version](https://img.shields.io/github/package-json/v/solidjs-community/eslint-plugin-solid?style=for-the-badge)](https://github.com/solidjs-community/eslint-plugin-solid)
99
![ESLint peer dependency](https://img.shields.io/badge/eslint-6.x--8.x-blue?style=for-the-badge)
10-
[![CI](https://github.com/joshwilsonvu/eslint-plugin-solid/actions/workflows/ci.yml/badge.svg?style=for-the-badge)](https://github.com/joshwilsonvu/eslint-plugin-solid/actions/workflows/ci.yml)
10+
[![CI](https://github.com/solidjs-community/eslint-plugin-solid/actions/workflows/ci.yml/badge.svg?style=for-the-badge)](https://github.com/solidjs-community/eslint-plugin-solid/actions/workflows/ci.yml)
1111

1212
This package contains [Solid](https://www.solidjs.com/)-specific linting rules for ESLint. It can
1313
ease Solid's learning curve by finding and fixing problems around Solid's reactivity system, and can
@@ -102,14 +102,14 @@ options you can set.
102102

103103
### Disabling Rules
104104

105-
The rules in this plugin provide sensible guidelines, but there may be occasions where you *know
106-
what you're doing* and want to ignore a warning. Just [add a
105+
The rules in this plugin provide sensible guidelines, but there may be occasions where you _know
106+
what you're doing_ and want to ignore a warning. Just [add a
107107
comment](https://eslint.org/docs/latest/user-guide/configuring/rules#disabling-rules) like the
108108
following:
109109

110110
```jsx
111111
// eslint-disable-next-line solid/reactivity
112-
const [editedValue, setEditedValue] = createSignal(props.value)
112+
const [editedValue, setEditedValue] = createSignal(props.value);
113113
```
114114

115115
## Rules

docs/components-return-once.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ This rule is **a warning** by default.
77

88
<!-- AUTO-GENERATED-CONTENT:END -->
99

10-
See [this issue](https://github.com/joshwilsonvu/eslint-plugin-solid/issues/24) for rationale.
10+
See [this issue](https://github.com/solidjs-community/eslint-plugin-solid/issues/24) for rationale.
1111

1212
<!-- AUTO-GENERATED-CONTENT:START (OPTIONS) -->
1313

docs/event-handlers.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ This rule is **a warning** by default.
77

88
<!-- AUTO-GENERATED-CONTENT:END -->
99

10-
See [this issue](https://github.com/joshwilsonvu/eslint-plugin-solid/issues/23) for rationale.
10+
See [this issue](https://github.com/solidjs-community/eslint-plugin-solid/issues/23) for rationale.
1111

1212
<!-- AUTO-GENERATED-CONTENT:START (OPTIONS) -->
1313
## Rule Options

docs/jsx-no-script-url.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ This rule is **an error** by default.
77

88
<!-- AUTO-GENERATED-CONTENT:END -->
99

10-
See [this issue](https://github.com/joshwilsonvu/eslint-plugin-solid/issues/24) for rationale.
10+
See [this issue](https://github.com/solidjs-community/eslint-plugin-solid/issues/24) for rationale.
1111

1212
<!-- AUTO-GENERATED-CONTENT:START (OPTIONS) -->
1313

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"description": "Solid-specific linting rules for ESLint.",
55
"main": "dist/index.js",
66
"types": "dist/index.d.ts",
7-
"repository": "https://github.com/joshwilsonvu/eslint-plugin-solid",
7+
"repository": "https://github.com/solidjs-community/eslint-plugin-solid",
88
"author": "Josh Wilson <[email protected]>",
99
"license": "MIT",
1010
"engines": {

src/rules/components-return-once.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ const rule: TSESLint.RuleModule<"noEarlyReturn" | "noConditionalReturn", []> = {
2424
recommended: "error",
2525
description:
2626
"Disallow early returns in components. Solid components only run once, and so conditionals should be inside JSX.",
27-
url: "https://github.com/joshwilsonvu/eslint-plugin-solid/blob/main/docs/components-return-once.md",
27+
url: "https://github.com/solidjs-community/eslint-plugin-solid/blob/main/docs/components-return-once.md",
2828
},
2929
fixable: "code",
3030
schema: [],

src/rules/event-handlers.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ const rule: TSESLint.RuleModule<
8383
recommended: "warn",
8484
description:
8585
"Enforce naming DOM element event handlers consistently and prevent Solid's analysis from misunderstanding whether a prop should be an event handler.",
86-
url: "https://github.com/joshwilsonvu/eslint-plugin-solid/blob/main/docs/event-handlers.md",
86+
url: "https://github.com/solidjs-community/eslint-plugin-solid/blob/main/docs/event-handlers.md",
8787
},
8888
fixable: "code",
8989
hasSuggestions: true,

src/rules/imports.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -127,7 +127,7 @@ const rule: TSESLint.RuleModule<"prefer-source", []> = {
127127
recommended: "warn",
128128
description:
129129
'Enforce consistent imports from "solid-js", "solid-js/web", and "solid-js/store".',
130-
url: "https://github.com/joshwilsonvu/eslint-plugin-solid/blob/main/docs/imports.md",
130+
url: "https://github.com/solidjs-community/eslint-plugin-solid/blob/main/docs/imports.md",
131131
},
132132
fixable: "code",
133133
schema: [],

src/rules/jsx-no-duplicate-props.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ const rule: TSESLint.RuleModule<
1313
docs: {
1414
recommended: "error",
1515
description: "Disallow passing the same prop twice in JSX.",
16-
url: "https://github.com/joshwilsonvu/eslint-plugin-solid/blob/main/docs/jsx-no-duplicate-props.md",
16+
url: "https://github.com/solidjs-community/eslint-plugin-solid/blob/main/docs/jsx-no-duplicate-props.md",
1717
},
1818
schema: [
1919
{

0 commit comments

Comments
 (0)