[Misc] Update eslint.config.js for space after commas (#3649)

* Update eslint.config.js for space after commas

* run eslint

* run eslint, again
This commit is contained in:
Adrián T. 2024-08-23 04:36:10 -04:00 committed by GitHub
parent 3cd1a60df8
commit f417a262de
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
33 changed files with 176 additions and 175 deletions

View File

@ -38,7 +38,8 @@ export default [
"ignoreComments": false // Enforces the rule on lines containing comments
}],
"space-before-blocks": ["error", "always"], // Enforces a space before blocks
"keyword-spacing": ["error", { "before": true, "after": true }] // Enforces spacing before and after keywords
"keyword-spacing": ["error", { "before": true, "after": true }], // Enforces spacing before and after keywords
"comma-spacing": ["error", { "before": false, "after": true }] // Enforces spacing after comma
}
}
]