Skip to content

Commit 9ad8df3

Browse files
authored
Add no-undeclared-imports eslint rule (#8017)
* Add no-undeclared-imports eslint rule * fix build breakage
1 parent 75b311b commit 9ad8df3

File tree

4 files changed

+45
-9
lines changed

4 files changed

+45
-9
lines changed

.eslintrc.js

+11-2
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,16 @@ module.exports = {
2020
"require-atomic-updates": "off", // This rule is so noisy and isn't useful: https://github.com/eslint/eslint/issues/11899
2121
"require-jsdoc": "off", // This rule is deprecated and superseded by jsdoc/require-jsdoc.
2222
"valid-jsdoc": "off", // This is deprecated but included in recommended configs.
23-
23+
"brikke/no-undeclared-imports": [
24+
"error",
25+
{
26+
excludedFilePatterns: ["**/scripts/**/*", `update-notifier-cjs.d.ts`],
27+
excludedModules: [
28+
/node:/,
29+
"express-serve-static-core", // We rely on just the types, and the package breaks our build.
30+
],
31+
},
32+
],
2433
"no-prototype-builtins": "warn", // TODO(bkendall): remove, allow to error.
2534
"no-useless-escape": "warn", // TODO(bkendall): remove, allow to error.
2635
"prefer-promise-reject-errors": "warn", // TODO(bkendall): remove, allow to error.
@@ -107,7 +116,7 @@ module.exports = {
107116
sourceType: "module",
108117
warnOnUnsupportedTypeScriptVersion: false,
109118
},
110-
plugins: ["prettier", "@typescript-eslint", "jsdoc"],
119+
plugins: ["prettier", "@typescript-eslint", "jsdoc", "brikke"],
111120
settings: {
112121
jsdoc: {
113122
tagNamePreference: {

npm-shrinkwrap.json

+31-6
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+2
Original file line numberDiff line numberDiff line change
@@ -225,6 +225,7 @@
225225
"eslint": "^8.56.0",
226226
"eslint-config-google": "^0.14.0",
227227
"eslint-config-prettier": "^9.1.0",
228+
"eslint-plugin-brikke": "^2.2.2",
228229
"eslint-plugin-jsdoc": "^48.0.1",
229230
"eslint-plugin-prettier": "^5.1.3",
230231
"firebase": "^9.16.0",
@@ -240,6 +241,7 @@
240241
"nyc": "^15.1.0",
241242
"openapi-merge": "^1.0.23",
242243
"openapi-typescript": "^4.5.0",
244+
"openapi3-ts": "^3.2.0",
243245
"prettier": "^3.2.4",
244246
"proxy": "^1.0.2",
245247
"puppeteer": "^19.0.0",

src/emulator/storage/apis/gcloud.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ import { parseObjectUploadMultipartRequest } from "../multipart";
1616
import { Upload, UploadNotActiveError } from "../upload";
1717
import { ForbiddenError, NotFoundError } from "../errors";
1818
import { reqBodyToBuffer } from "../../shared/request";
19-
import { Query } from "express-serve-static-core";
19+
import type { Query } from "express-serve-static-core";
2020

2121
export function createCloudEndpoints(emulator: StorageEmulator): Router {
2222
// eslint-disable-next-line new-cap

0 commit comments

Comments
 (0)