add prettier rule to eslint (#1488)

This commit is contained in:
Danish Arora 2023-08-17 17:24:38 +05:30 committed by GitHub
parent 7a805a277a
commit bb6211d675
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 6 additions and 0 deletions

View File

@ -16,6 +16,12 @@
],
"globals": { "BigInt": true, "console": true, "WebAssembly": true },
"rules": {
"prettier/prettier": [
"error",
{
"trailingComma": "none"
}
],
"comma-dangle": ["error", "never"],
"@typescript-eslint/explicit-function-return-type": "off",
"@typescript-eslint/explicit-module-boundary-types": "off",