grpc-js: linting fix no-unpublished-import for ts

This commit is contained in:
Patrick Remy 2020-04-09 11:53:13 +02:00
parent 16ec0f0f64
commit f4e295cdce
No known key found for this signature in database
GPG Key ID: FE25C0B14C0500CD
1 changed files with 4 additions and 1 deletions

View File

@ -2,6 +2,9 @@
"root": true,
"extends": "./node_modules/gts",
"rules": {
"@typescript-eslint/no-explicit-any": "off"
"@typescript-eslint/no-explicit-any": "off",
"node/no-unpublished-import": ["error", {
"tryExtensions": [".ts", ".js", ".json", ".node"]
}]
}
}