quicktype-core 23.0.157 → 23.0.158

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/dist/TypeUtils.js CHANGED
@@ -216,9 +216,7 @@ function matchType(type, anyType, nullType, boolType, integerType, doubleType, s
216
216
  function typeNotSupported(t) {
217
217
  return (0, Support_1.panic)(`Unsupported type ${t.kind} in non-exhaustive match`);
218
218
  }
219
- /* tslint:disable:strict-boolean-expressions */
220
219
  return matchTypeExhaustive(type, typeNotSupported, anyType, nullType, boolType, integerType, doubleType, stringType, arrayType, classType, mapType, typeNotSupported, enumType, unionType, transformedStringType || typeNotSupported);
221
- /* tslint:enable */
222
220
  }
223
221
  exports.matchType = matchType;
224
222
  function matchCompoundType(t, arrayType, classType, mapType, objectType, unionType) {
@@ -26,7 +26,6 @@ function messageParseError(name, description, e) {
26
26
  });
27
27
  }
28
28
  class JSONInput {
29
- /* tslint:disable:no-unused-variable */
30
29
  constructor(_compressedJSON) {
31
30
  this._compressedJSON = _compressedJSON;
32
31
  this.kind = "json";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "quicktype-core",
3
- "version": "23.0.157",
3
+ "version": "23.0.158",
4
4
  "description": "The quicktype engine as a library",
5
5
  "license": "Apache-2.0",
6
6
  "main": "dist/index.js",
@@ -8,8 +8,7 @@
8
8
  "repository": "https://github.com/quicktype/quicktype",
9
9
  "scripts": {
10
10
  "clean": "rm -rf dist node_modules *~",
11
- "build": "tsc",
12
- "tslint": "tslint --project ."
11
+ "build": "tsc"
13
12
  },
14
13
  "dependencies": {
15
14
  "@glideapps/ts-necessities": "2.2.3",
@@ -30,14 +29,11 @@
30
29
  },
31
30
  "devDependencies": {
32
31
  "@types/browser-or-node": "^1.3.2",
33
- "@types/js-base64": "^3.3.1",
34
32
  "@types/node": "18.19.31",
35
33
  "@types/pako": "^1.0.0",
36
34
  "@types/pluralize": "0.0.30",
37
35
  "@types/readable-stream": "4.0.10",
38
36
  "@types/unicode-properties": "^1.3.0",
39
- "@types/yaml": "^1.9.7",
40
- "tslint": "^6.1.3",
41
37
  "typescript": "4.9.5"
42
38
  },
43
39
  "files": [