Skip to content

Commit 91ee9a4

Browse files
committed
Remove no-restricted-syntax from recommended
1 parent ec35422 commit 91ee9a4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/rules/no-restricted-syntax.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ type Config = z.infer<typeof ConfigSchema>;
3131

3232
export const NoRestrictedSyntax: RuleDefinitionWithConfig<Config> = {
3333
name: "no-restricted-syntax",
34-
recommended: true,
34+
recommended: false,
3535
parseConfig: (config: unknown) => ConfigSchema.parse(config),
3636
create: function (config: Config) {
3737
return new NoRestrictedSyntaxRule(this.name, config);

0 commit comments

Comments
 (0)