Skip to content

Commit e09e15d

Browse files
committed
fix(template): remove trailing comma in pyright config
The trailing comma in the JSON configuration was causing syntax validation issues. JSON syntax doesn't allow trailing commas, so this was causing parsing errors in tools that strictly validate JSON. The removal ensures the configuration remains valid and properly interpreted by pyright and other JSON parsers. This change maintains compatibility with strict JSON parsers while preserving the intended configuration settings. No functional changes were made to the actual linter rules.
1 parent 873e1a5 commit e09e15d

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

template/.config/linters/pyrightconfig.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,5 +7,5 @@
77
"reportIncompatibleMethodOverride": "warning",
88
"reportIncompatibleVariableOverride": "warning",
99
"reportPrivateImportUsage": "none",
10-
"reportRedeclaration": "none",
10+
"reportRedeclaration": "none"
1111
}

0 commit comments

Comments
 (0)