Skip to content

Commit 6b2fd32

Browse files
authored
ESLint update: Add new files to eslintignore + rename file (microsoft#13746)
* Add new files to eslintignore + rename file * Why didn't it delete this file ugh * 🐒🐒🐒🐒
1 parent 04e9a9c commit 6b2fd32

3 files changed

Lines changed: 7 additions & 4 deletions

File tree

β€Ž.eslintignoreβ€Ž

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -301,6 +301,7 @@ src/test/common/utils/regexp.unit.test.ts
301301
src/test/common/utils/cacheUtils.unit.test.ts
302302
src/test/common/utils/decorators.unit.test.ts
303303
src/test/common/utils/localize.functional.test.ts
304+
src/test/common/utils/version.unit.test.ts
304305
src/test/common/utils/workerPool.functional.test.ts
305306
src/test/common/configSettings/configSettings.pythonPath.unit.test.ts
306307
src/test/common/configSettings/configSettings.unit.test.ts
@@ -415,6 +416,7 @@ src/test/startPage/startPage.functional.test.tsx
415416
src/test/telemetry/index.unit.test.ts
416417
src/test/telemetry/importTracker.unit.test.ts
417418
src/test/telemetry/envFileTelemetry.unit.test.ts
419+
src/test/telemetry/extensionInstallTelemetry.unit.test.ts
418420

419421
src/test/linters/pylint.unit.test.ts
420422
src/test/linters/mypy.unit.test.ts
@@ -1192,6 +1194,7 @@ src/client/telemetry/importTracker.ts
11921194
src/client/telemetry/constants.ts
11931195
src/client/telemetry/index.ts
11941196
src/client/telemetry/envFileTelemetry.ts
1197+
src/client/telemetry/extensionInstallTelemetry.ts
11951198

11961199
src/client/linters/pydocstyle.ts
11971200
src/client/linters/serviceRegistry.ts

β€Žsrc/test/pythonEnvironments/common/environmentIdentifier.unit.test.tsβ€Ž

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ suite('Environment Identifier', () => {
1919
'test',
2020
'pythonEnvironments',
2121
'common',
22-
'envlayouts'
22+
'envlayouts',
2323
);
2424
suite('Conda', () => {
2525
test('Conda layout with conda-meta and python binary in the same directory', async () => {
@@ -59,7 +59,7 @@ suite('Environment Identifier', () => {
5959
'Microsoft',
6060
'WindowsApps',
6161
'PythonSoftwareFoundation.Python.3.8_qbz5n2kfra8p0',
62-
exe
62+
exe,
6363
);
6464
const envType: EnvironmentType = await identifyEnvironment(interpreterPath);
6565
assert.deepEqual(envType, EnvironmentType.WindowsStore);
@@ -69,7 +69,7 @@ suite('Environment Identifier', () => {
6969
fakeProgramFilesPath,
7070
'WindowsApps',
7171
'PythonSoftwareFoundation.Python.3.8_qbz5n2kfra8p0',
72-
exe
72+
exe,
7373
);
7474
const envType: EnvironmentType = await identifyEnvironment(interpreterPath);
7575
assert.deepEqual(envType, EnvironmentType.WindowsStore);
@@ -86,7 +86,7 @@ suite('Environment Identifier', () => {
8686
fakeProgramFilesPath,
8787
'WindowsApps',
8888
'PythonSoftwareFoundation.Python.3.8_qbz5n2kfra8p0',
89-
exe
89+
exe,
9090
);
9191
const envType: EnvironmentType = await identifyEnvironment(interpreterPath);
9292
assert.deepEqual(envType, EnvironmentType.WindowsStore);
File renamed without changes.

0 commit comments

Comments
Β (0)