Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
16 commits
Select commit Hold shift + click to select a range
651abe5
feat: add member-ordering rule
cursoragent Feb 9, 2026
aa93764
fix: handle abstract member ordering
cursoragent Feb 9, 2026
672b3fc
test: enable member-ordering variant suites
cursoragent Feb 9, 2026
9c61925
fix: adjust member-ordering linting
ScriptedAlchemy Feb 9, 2026
e9d4c8a
Merge remote-tracking branch 'origin/main' into codex/sync-cross-pr-468
ScriptedAlchemy Feb 25, 2026
569521f
fix(typescript/member-ordering): handle missed alpha-ordering cases
ScriptedAlchemy Feb 25, 2026
4d76c91
Merge branch 'main' into cursor/typescript-member-ordering-rule-9398
ScriptedAlchemy Mar 3, 2026
a962343
Merge branch 'main' into cursor/typescript-member-ordering-rule-9398
ScriptedAlchemy Mar 4, 2026
e170f0e
Merge branch 'main' into cursor/typescript-member-ordering-rule-9398
ScriptedAlchemy Mar 5, 2026
2b651fe
Merge remote-tracking branch 'origin/main' into cursor/typescript-mem…
ScriptedAlchemy Mar 12, 2026
0344278
Merge remote-tracking branch 'origin/main' into cursor/typescript-mem…
ScriptedAlchemy Mar 12, 2026
37edb34
Merge remote-tracking branch 'origin/main' into cursor/typescript-mem…
ScriptedAlchemy Mar 12, 2026
c5dcfa8
Merge branch 'main' into cursor/typescript-member-ordering-rule-9398
ScriptedAlchemy Mar 12, 2026
408bb02
Merge remote-tracking branch 'origin/main' into cursor/typescript-mem…
ScriptedAlchemy Mar 12, 2026
2c50b1f
Merge remote-tracking branch 'origin/main' into HEAD
ScriptedAlchemy Mar 19, 2026
039a0b9
Merge branch 'main' into cursor/typescript-member-ordering-rule-9398
ScriptedAlchemy Mar 19, 2026
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions internal/config/config.go
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@ import (
"github.com/web-infra-dev/rslint/internal/plugins/typescript/rules/consistent_type_imports"
"github.com/web-infra-dev/rslint/internal/plugins/typescript/rules/default_param_last"
"github.com/web-infra-dev/rslint/internal/plugins/typescript/rules/dot_notation"
"github.com/web-infra-dev/rslint/internal/plugins/typescript/rules/member_ordering"
"github.com/web-infra-dev/rslint/internal/plugins/typescript/rules/no_array_constructor"
"github.com/web-infra-dev/rslint/internal/plugins/typescript/rules/no_array_delete"
"github.com/web-infra-dev/rslint/internal/plugins/typescript/rules/no_base_to_string"
Expand Down Expand Up @@ -350,6 +351,7 @@ func registerAllTypeScriptEslintPluginRules() {
GlobalRuleRegistry.Register("@typescript-eslint/consistent-type-imports", consistent_type_imports.ConsistentTypeImportsRule)
GlobalRuleRegistry.Register("@typescript-eslint/default-param-last", default_param_last.DefaultParamLastRule)
GlobalRuleRegistry.Register("@typescript-eslint/dot-notation", dot_notation.DotNotationRule)
GlobalRuleRegistry.Register("@typescript-eslint/member-ordering", member_ordering.MemberOrderingRule)
GlobalRuleRegistry.Register("@typescript-eslint/no-array-constructor", no_array_constructor.NoArrayConstructorRule)
GlobalRuleRegistry.Register("@typescript-eslint/no-array-delete", no_array_delete.NoArrayDeleteRule)
GlobalRuleRegistry.Register("@typescript-eslint/no-base-to-string", no_base_to_string.NoBaseToStringRule)
Expand Down
Loading
Loading