Skip to content

Commit 827d5ca

Browse files
committed
Move to slippy-lint org
1 parent 46349f7 commit 827d5ca

File tree

7 files changed

+14
-14
lines changed

7 files changed

+14
-14
lines changed

README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Slippy
22

3-
[Docs](https://fvictorio.github.io/slippy)
3+
[Docs](https://slippy-lint.github.io/slippy)
44

55
Slippy is a linter for Solidity that's simple, powerful, and thoughtfully built.
66

@@ -26,11 +26,11 @@ npx slippy "contracts/**/*.sol"
2626

2727
# Why Slippy?
2828

29-
You can read a more detailed [comparison between Slippy and Solhint](https://fvictorio.github.io/slippy/guides/slippy-vs-solhint), but here's a summary:
29+
You can read a more detailed [comparison between Slippy and Solhint](https://slippy-lint.github.io/slippy/guides/slippy-vs-solhint), but here's a summary:
3030

3131
- A single, flexible configuration that lets you easily enable or disable rules for specific parts of your codebase
32-
- A unified [`naming-convention`](https://fvictorio.github.io/slippy/rules/naming-convention) rule
33-
- A more accurate [`no-unused-vars`](https://fvictorio.github.io/slippy/rules/no-unused-vars) rule
32+
- A unified [`naming-convention`](https://slippy-lint.github.io/slippy/rules/naming-convention) rule
33+
- A more accurate [`no-unused-vars`](https://slippy-lint.github.io/slippy/rules/no-unused-vars) rule
3434
- Unused comment directives like `// slippy-disable-line` are reported
3535
- No formatting rules
3636
- Semantic versioning
@@ -48,8 +48,8 @@ module.exports = {
4848
};
4949
```
5050

51-
For more details on configuring Slippy, including advanced features like cascading configurations, file ignores, and comment directives, see the [configuration documentation](https://fvictorio.github.io/guides/configuration).
51+
For more details on configuring Slippy, including advanced features like cascading configurations, file ignores, and comment directives, see the [configuration documentation](https://slippy-lint.github.io/guides/configuration).
5252

5353
# Rules
5454

55-
You can find the full list of available rules in the [rules reference documentation](https://fvictorio.github.io/slippy/reference/rules).
55+
You can find the full list of available rules in the [rules reference documentation](https://slippy-lint.github.io/slippy/reference/rules).

docs/astro.config.mjs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import { defineConfig } from "astro/config";
33
import starlight from "@astrojs/starlight";
44

55
export default defineConfig({
6-
site: "https://fvictorio.github.io",
6+
site: "https://slippy-lint.github.io",
77
base: "/slippy",
88
integrations: [
99
starlight({
@@ -12,7 +12,7 @@ export default defineConfig({
1212
{
1313
icon: "github",
1414
label: "GitHub",
15-
href: "https://github.com/fvictorio/slippy",
15+
href: "https://github.com/slippy-lint/slippy",
1616
},
1717
],
1818
sidebar: [

docs/src/content/docs/guides/slippy-vs-solhint.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ To the best of my knowledge, the following Slippy rules are not supported by Sol
7979

8080
### Solhint rules that could be added to Slippy
8181

82-
These are rules that I'm not sure about adding, but where I could change my mind. Please [open an issue](https://github.com/fvictorio/slippy/issues/new) if you think one of these should be included.
82+
These are rules that I'm not sure about adding, but where I could change my mind. Please [open an issue](https://github.com/slippy-lint/slippy/issues/new) if you think one of these should be included.
8383

8484
| Solhint rule |
8585
| -------------------------- |
@@ -107,7 +107,7 @@ These are rules that I'm not sure about adding, but where I could change my mind
107107

108108
### Solhint rules that won't be added to Slippy
109109

110-
These are rules I'm 99% sure won't be added to Slippy. This can be due to being obsolete, out of scope, or because it's unclear if they are useful. If you disagree with any of these, please [open an issue](https://github.com/fvictorio/slippy/issues/new).
110+
These are rules I'm 99% sure won't be added to Slippy. This can be due to being obsolete, out of scope, or because it's unclear if they are useful. If you disagree with any of these, please [open an issue](https://github.com/slippy-lint/slippy/issues/new).
111111

112112
| Solhint rule |
113113
| -------------------- |

docs/src/content/docs/reference/rules.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,4 +34,4 @@ _Rules that have a 🔧 next to them can be automatically fixed by running Slipp
3434
- [`sort-modifiers`](/slippy/rules/sort-modifiers): enforces a specific order for modifiers. 🔧
3535
- [`yul-prefer-iszero`](/slippy/rules/yul-prefer-iszero): recommends using `iszero` instead of `eq` when comparing to the `0` literal in Yul code.
3636

37-
Don't see a rule you need? [Open an issue](https://github.com/fvictorio/slippy/issues/new).
37+
Don't see a rule you need? [Open an issue](https://github.com/slippy-lint/slippy/issues/new).

docs/src/content/docs/rules/no-restricted-syntax.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ This rule receives an array of objects with two required properties:
2121
- `query`: A [Slang query](https://nomicfoundation.github.io/slang/latest/user-guide/06-query-language/01-query-syntax/) that specifies the syntax pattern to disallow.
2222
- `message`: A string that describes the violation.
2323

24-
You can experiment with Slang queries in [this online playground](https://fvictorio.github.io/slang-playground/).
24+
You can experiment with Slang queries in [this online playground](https://slippy-lint.github.io/slang-playground/).
2525

2626
## Examples
2727

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"description": "A simple but powerful linter for Solidity",
55
"repository": {
66
"type": "git",
7-
"url": "git+https://github.com/fvictorio/slippy"
7+
"url": "git+https://github.com/slippy-lint/slippy"
88
},
99
"bin": {
1010
"slippy": "./dist/cli/cli.js"

src/cli/cli.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ async function main() {
4040
const slippyVersion = await getSlippyVersion();
4141
Logger.error(
4242
chalk.red("[slippy]"),
43-
`Unexpected error, please report this issue: https://github.com/fvictorio/slippy/issues/new?body=${encodeURIComponent(`Slippy: ${slippyVersion}\nNode: ${process.version}`)}`,
43+
`Unexpected error, please report this issue: https://github.com/slippy-lint/slippy/issues/new?body=${encodeURIComponent(`Slippy: ${slippyVersion}\nNode: ${process.version}`)}`,
4444
);
4545
Logger.error();
4646
throw error;

0 commit comments

Comments
 (0)