@xterm/xterm 6.1.0-beta.257 → 6.1.0-beta.259

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@xterm/xterm",
3
3
  "description": "Full xterm terminal, in your browser",
4
- "version": "6.1.0-beta.257",
4
+ "version": "6.1.0-beta.259",
5
5
  "main": "lib/xterm.js",
6
6
  "module": "lib/xterm.mjs",
7
7
  "style": "css/xterm.css",
@@ -48,11 +48,11 @@
48
48
  "esbuild-demo-server-watch": "node bin/esbuild.mjs --demo-server --watch",
49
49
  "test": "npm run test-unit",
50
50
  "posttest": "npm run lint",
51
- "lint": "eslint --max-warnings 0 src/ addons/ demo/ test/",
51
+ "lint": "oxlint --type-aware --max-warnings 0 src addons demo test && eslint --config eslint.config.naming.mjs --max-warnings 0 src addons demo test",
52
52
  "lint-changes": "node ./bin/lint_changes.js",
53
53
  "lint-changes-fix": "node ./bin/lint_changes.js --fix",
54
- "lint-fix": "eslint --fix src/ addons/ demo/ test/",
55
- "lint-api": "eslint --config eslint.config.typings.mjs --max-warnings 0 typings/",
54
+ "lint-fix": "oxlint --type-aware --fix --max-warnings 0 src addons demo test",
55
+ "lint-api": "oxlint --max-warnings 0 -c .oxlintrc.typings.json typings && eslint --config eslint.config.naming.mjs --max-warnings 0 typings",
56
56
  "test-unit": "node ./bin/test_unit.js",
57
57
  "test-unit-slow-tests": "npm run test-unit | grep \"ms)\"",
58
58
  "test-unit-coverage": "node ./bin/test_unit.js --coverage",
@@ -95,6 +95,7 @@
95
95
  "esbuild": "^0.28.0",
96
96
  "eslint": "^10.3.0",
97
97
  "eslint-plugin-jsdoc": "^62.9.0",
98
+ "eslint-plugin-oxlint": "^1.67.0",
98
99
  "express": "^5.2.1",
99
100
  "express-ws": "^5.0.2",
100
101
  "jsdom": "^29.1.1",
@@ -102,6 +103,9 @@
102
103
  "mustache": "^4.2.0",
103
104
  "node-pty": "^1.2.0-beta.9",
104
105
  "nyc": "^18.0.0",
106
+ "oxlint": "^1.67.0",
107
+ "oxlint-plugin-eslint": "^1.67.0",
108
+ "oxlint-tsgolint": "^0.23.0",
105
109
  "source-map-loader": "^5.0.0",
106
110
  "source-map-support": "^0.5.20",
107
111
  "ts-loader": "^9.5.7",
@@ -112,5 +116,5 @@
112
116
  "ws": "^8.20.0",
113
117
  "xterm-benchmark": "^0.3.2"
114
118
  },
115
- "commit": "04a0b7347caad5c95bac808272a8d4018e4fe125"
119
+ "commit": "dfb65ca66fcdba3e2b05481de63667c8fbdf76da"
116
120
  }
@@ -231,7 +231,6 @@ export class DomRendererRowFactory {
231
231
  }
232
232
  charElement = this._document.createElement('span');
233
233
  cellAmount = 0;
234
- // eslint-disable-next-line no-useless-assignment
235
234
  text = '';
236
235
  }
237
236
  }
@@ -6,4 +6,4 @@
6
6
  /**
7
7
  * The xterm.js version. This is updated by the publish script from package.json.
8
8
  */
9
- export const XTERM_VERSION = '6.1.0-beta.257';
9
+ export const XTERM_VERSION = '6.1.0-beta.259';