Skip to content

Commit cda3332

Browse files
smoke test fixes (#581)
Co-authored-by: eleanorjboyd <26030610+eleanorjboyd@users.noreply.github.com>
1 parent ad458b4 commit cda3332

20 files changed

+6021
-2386
lines changed

.eslintrc.json

Lines changed: 0 additions & 24 deletions
This file was deleted.

.github/workflows/pr-check.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,11 @@ on:
44
pull_request:
55

66
env:
7-
NODE_VERSION: 18.17.0
7+
NODE_VERSION: 22.17.0
88
TEST_RESULTS_DIRECTORY: .
99
# Force a path with spaces and unicode chars to test extension works in these scenarios
10-
special-working-directory: './🐍 🐛'
11-
special-working-directory-relative: '🐍 🐛'
10+
special-working-directory: './testingDir'
11+
special-working-directory-relative: 'testingDir'
1212

1313
jobs:
1414
build-vsix:

.github/workflows/push-check.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,11 +9,11 @@ on:
99
- 'release-*'
1010

1111
env:
12-
NODE_VERSION: 18.17.1
12+
NODE_VERSION: 22.17.0
1313
TEST_RESULTS_DIRECTORY: .
1414
# Force a path with spaces and unicode chars to test extension works in these scenarios
15-
special-working-directory: './🐍 🐛'
16-
special-working-directory-relative: '🐍 🐛'
15+
special-working-directory: 'testingDir'
16+
special-working-directory-relative: 'testingDir'
1717

1818
jobs:
1919
build-vsix:

.nvmrc

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
22.17.0

build/azure-pipeline.pre-release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ extends:
3232
buildSteps:
3333
- task: NodeTool@0
3434
inputs:
35-
versionSpec: '18.17.0'
35+
versionSpec: '22.17.0'
3636
displayName: Select Node version
3737

3838
- task: UsePythonVersion@0

build/azure-pipeline.stable.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ extends:
2929
buildSteps:
3030
- task: NodeTool@0
3131
inputs:
32-
versionSpec: '18.17.0'
32+
versionSpec: '22.17.0'
3333
displayName: Select Node version
3434

3535
- task: UsePythonVersion@0

eslint.config.mjs

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
// @ts-check
2+
3+
import eslint from '@eslint/js';
4+
import tseslint from 'typescript-eslint';
5+
6+
export default tseslint.config(
7+
eslint.configs.recommended,
8+
...tseslint.configs.recommended,
9+
{
10+
files: ['**/*.ts'],
11+
rules: {
12+
'@typescript-eslint/naming-convention': 'warn',
13+
'curly': 'warn',
14+
'eqeqeq': 'warn',
15+
'no-throw-literal': 'warn',
16+
'semi': 'off',
17+
},
18+
},
19+
{
20+
ignores: [
21+
'out/**',
22+
'dist/**',
23+
'**/*.d.ts',
24+
],
25+
}
26+
);

0 commit comments

Comments
 (0)