You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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:
30
30
31
31
- 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
34
34
- Unused comment directives like `// slippy-disable-line` are reported
35
35
- No formatting rules
36
36
- Semantic versioning
@@ -48,8 +48,8 @@ module.exports = {
48
48
};
49
49
```
50
50
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).
52
52
53
53
# Rules
54
54
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).
Copy file name to clipboardExpand all lines: docs/src/content/docs/guides/slippy-vs-solhint.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -79,7 +79,7 @@ To the best of my knowledge, the following Slippy rules are not supported by Sol
79
79
80
80
### Solhint rules that could be added to Slippy
81
81
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.
83
83
84
84
| Solhint rule |
85
85
| -------------------------- |
@@ -107,7 +107,7 @@ These are rules that I'm not sure about adding, but where I could change my mind
107
107
108
108
### Solhint rules that won't be added to Slippy
109
109
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).
Copy file name to clipboardExpand all lines: docs/src/content/docs/rules/no-restricted-syntax.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -21,7 +21,7 @@ This rule receives an array of objects with two required properties:
21
21
-`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.
22
22
-`message`: A string that describes the violation.
23
23
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/).
0 commit comments