diff --git a/sdk/identity/identity/.eslintignore b/sdk/identity/identity/.eslintignore deleted file mode 100644 index 9e679be63366..000000000000 --- a/sdk/identity/identity/.eslintignore +++ /dev/null @@ -1,2 +0,0 @@ -test/manual/ -test/manual-integration/ diff --git a/sdk/identity/identity/.eslintrc.json b/sdk/identity/identity/.eslintrc.json index c6695b65bc04..8eb21b5d1c3e 100644 --- a/sdk/identity/identity/.eslintrc.json +++ b/sdk/identity/identity/.eslintrc.json @@ -1,7 +1,7 @@ { "plugins": ["@azure/azure-sdk"], "extends": ["plugin:@azure/azure-sdk/azure-sdk-base"], - "ignorePatterns": ["src/core"], + "ignorePatterns": ["test/manual*"], "rules": { "@azure/azure-sdk/ts-naming-options": "warn" } diff --git a/sdk/identity/identity/test/public/clientCertificateCredential.spec.ts b/sdk/identity/identity/test/public/clientCertificateCredential.spec.ts index e5813931a605..278e4ba596e4 100644 --- a/sdk/identity/identity/test/public/clientCertificateCredential.spec.ts +++ b/sdk/identity/identity/test/public/clientCertificateCredential.spec.ts @@ -8,7 +8,6 @@ import assert from "assert"; import { ClientCertificateCredential } from "../../src"; import { MockAuthHttpClient } from "../authTestUtils"; import { setTracer, TestTracer, SpanGraph } from "@azure/core-tracing"; -import { ClientCertificateCredentialOptions } from "../../src/credentials/clientCertificateCredentialOptions"; describe("ClientCertificateCredential", function() { it("loads a PEM-formatted certificate from a file", () => { diff --git a/sdk/identity/identity/tsconfig.json b/sdk/identity/identity/tsconfig.json index bf0d06868733..37081195b9c1 100644 --- a/sdk/identity/identity/tsconfig.json +++ b/sdk/identity/identity/tsconfig.json @@ -54,6 +54,6 @@ // "emitDecoratorMetadata": true, /* Enables experimental support for emitting type metadata for decorators. */ "forceConsistentCasingInFileNames": true }, - "include": ["src/**/*", "test/*", "test/manual/**/*", "test/internal/**/*", "test/public/**/*"], - "exclude": ["test/manual", "node_modules"] + "include": ["src/**/*", "test/**/*"], + "exclude": ["test/manual*/**/*", "node_modules"] }