Skip to content

Commit e886457

Browse files
authored
Cleanup tool a little and add validation that common props aren't overloaded (#45)
1 parent b3dc176 commit e886457

File tree

8 files changed

+129
-108
lines changed

8 files changed

+129
-108
lines changed

.vscode/launch.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
"program": "${workspaceRoot}/out/extractor.js",
1313
"args": [
1414
"--sourceDir=${workspaceRoot}/src/telemetry-sources/vscode",
15-
"--excludedDirPattern=extensions",
15+
"--excludedDir=src/telemetry-sources/vscode/extensions",
1616
"--outputDir=${workspaceRoot}",
1717
"--applyEndpoints",
1818
"--lowerCaseEvents"

eslint.config.js

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,8 @@
11
const eslint = require('@eslint/js');
22
const tseslint = require('typescript-eslint');
3-
const pluginSecurity = require('eslint-plugin-security');
43

54

65
module.exports = tseslint.config(
76
eslint.configs.recommended,
8-
pluginSecurity.configs.recommended,
97
...tseslint.configs.recommended,
108
);

package-lock.json

Lines changed: 94 additions & 94 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,8 @@
2424
"license": "MIT",
2525
"dependencies": {
2626
"@vscode/ripgrep": "^1.15.10",
27-
"command-line-args": "^5.2.1",
28-
"ts-morph": "^22.0.0"
27+
"command-line-args": "^6.0.1",
28+
"ts-morph": "^25.0.1"
2929
},
3030
"devDependencies": {
3131
"@types/command-line-args": "^5.2.3",
@@ -34,7 +34,6 @@
3434
"@typescript-eslint/eslint-plugin": "^7.1.0",
3535
"@typescript-eslint/parser": "^7.1.0",
3636
"eslint": "^8.57.0",
37-
"eslint-plugin-security": "^2.1.1",
3837
"mocha": "^10.2.0",
3938
"nyc": "^15.1.0",
4039
"source-map-support": "^0.5.21",

0 commit comments

Comments
 (0)