@html-validate/eslint-config 6.5.6 → 6.5.8

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/cli.mjs CHANGED
@@ -3740,7 +3740,7 @@ var require_lexer = __commonJS({
3740
3740
  colno
3741
3741
  };
3742
3742
  }
3743
- var Tokenizer = /* @__PURE__ */ function() {
3743
+ var Tokenizer = /* @__PURE__ */ (function() {
3744
3744
  function Tokenizer2(str, opts) {
3745
3745
  this.str = str;
3746
3746
  this.index = 0;
@@ -4067,7 +4067,7 @@ var require_lexer = __commonJS({
4067
4067
  return this.str.charAt(this.index - 1);
4068
4068
  };
4069
4069
  return Tokenizer2;
4070
- }();
4070
+ })();
4071
4071
  module.exports = {
4072
4072
  lex: function lex(src, opts) {
4073
4073
  return new Tokenizer(src, opts);
@@ -4166,7 +4166,7 @@ var require_object = __commonJS({
4166
4166
  lib.keys(props).forEach(function(k) {
4167
4167
  props[k] = parentWrap(cls.prototype[k], props[k]);
4168
4168
  });
4169
- var subclass = /* @__PURE__ */ function(_cls) {
4169
+ var subclass = /* @__PURE__ */ (function(_cls) {
4170
4170
  _inheritsLoose(subclass2, _cls);
4171
4171
  function subclass2() {
4172
4172
  return _cls.apply(this, arguments) || this;
@@ -4178,11 +4178,11 @@ var require_object = __commonJS({
4178
4178
  }
4179
4179
  }]);
4180
4180
  return subclass2;
4181
- }(cls);
4181
+ })(cls);
4182
4182
  lib._assign(subclass.prototype, props);
4183
4183
  return subclass;
4184
4184
  }
4185
- var Obj = /* @__PURE__ */ function() {
4185
+ var Obj = /* @__PURE__ */ (function() {
4186
4186
  function Obj2() {
4187
4187
  this.init.apply(this, arguments);
4188
4188
  }
@@ -4203,8 +4203,8 @@ var require_object = __commonJS({
4203
4203
  }
4204
4204
  }]);
4205
4205
  return Obj2;
4206
- }();
4207
- var EmitterObj = /* @__PURE__ */ function(_EventEmitter) {
4206
+ })();
4207
+ var EmitterObj = /* @__PURE__ */ (function(_EventEmitter) {
4208
4208
  _inheritsLoose(EmitterObj2, _EventEmitter);
4209
4209
  function EmitterObj2() {
4210
4210
  var _this2;
@@ -4230,7 +4230,7 @@ var require_object = __commonJS({
4230
4230
  }
4231
4231
  }]);
4232
4232
  return EmitterObj2;
4233
- }(EventEmitter);
4233
+ })(EventEmitter);
4234
4234
  module.exports = {
4235
4235
  Obj,
4236
4236
  EmitterObj
@@ -4293,7 +4293,7 @@ var require_nodes = __commonJS({
4293
4293
  obj.findAll(type, results);
4294
4294
  }
4295
4295
  }
4296
- var Node2 = /* @__PURE__ */ function(_Obj) {
4296
+ var Node2 = /* @__PURE__ */ (function(_Obj) {
4297
4297
  _inheritsLoose(Node3, _Obj);
4298
4298
  function Node3() {
4299
4299
  return _Obj.apply(this, arguments) || this;
@@ -4335,8 +4335,8 @@ var require_nodes = __commonJS({
4335
4335
  });
4336
4336
  };
4337
4337
  return Node3;
4338
- }(Obj);
4339
- var Value = /* @__PURE__ */ function(_Node) {
4338
+ })(Obj);
4339
+ var Value = /* @__PURE__ */ (function(_Node) {
4340
4340
  _inheritsLoose(Value2, _Node);
4341
4341
  function Value2() {
4342
4342
  return _Node.apply(this, arguments) || this;
@@ -4353,8 +4353,8 @@ var require_nodes = __commonJS({
4353
4353
  }
4354
4354
  }]);
4355
4355
  return Value2;
4356
- }(Node2);
4357
- var NodeList = /* @__PURE__ */ function(_Node2) {
4356
+ })(Node2);
4357
+ var NodeList = /* @__PURE__ */ (function(_Node2) {
4358
4358
  _inheritsLoose(NodeList2, _Node2);
4359
4359
  function NodeList2() {
4360
4360
  return _Node2.apply(this, arguments) || this;
@@ -4378,7 +4378,7 @@ var require_nodes = __commonJS({
4378
4378
  }
4379
4379
  }]);
4380
4380
  return NodeList2;
4381
- }(Node2);
4381
+ })(Node2);
4382
4382
  var Root = NodeList.extend("Root");
4383
4383
  var Literal = Value.extend("Literal");
4384
4384
  var _Symbol = Value.extend("Symbol");
@@ -4410,7 +4410,7 @@ var require_nodes = __commonJS({
4410
4410
  var Import = Node2.extend("Import", {
4411
4411
  fields: ["template", "target", "withContext"]
4412
4412
  });
4413
- var FromImport = /* @__PURE__ */ function(_Node3) {
4413
+ var FromImport = /* @__PURE__ */ (function(_Node3) {
4414
4414
  _inheritsLoose(FromImport2, _Node3);
4415
4415
  function FromImport2() {
4416
4416
  return _Node3.apply(this, arguments) || this;
@@ -4431,7 +4431,7 @@ var require_nodes = __commonJS({
4431
4431
  }
4432
4432
  }]);
4433
4433
  return FromImport2;
4434
- }(Node2);
4434
+ })(Node2);
4435
4435
  var FunCall = Node2.extend("FunCall", {
4436
4436
  fields: ["name", "args"]
4437
4437
  });
@@ -4638,7 +4638,7 @@ var require_parser = __commonJS({
4638
4638
  var nodes = require_nodes();
4639
4639
  var Obj = require_object().Obj;
4640
4640
  var lib = require_lib();
4641
- var Parser = /* @__PURE__ */ function(_Obj) {
4641
+ var Parser = /* @__PURE__ */ (function(_Obj) {
4642
4642
  _inheritsLoose(Parser2, _Obj);
4643
4643
  function Parser2() {
4644
4644
  return _Obj.apply(this, arguments) || this;
@@ -5542,7 +5542,7 @@ var require_parser = __commonJS({
5542
5542
  return new nodes.Root(0, 0, this.parseNodes());
5543
5543
  };
5544
5544
  return Parser2;
5545
- }(Obj);
5545
+ })(Obj);
5546
5546
  module.exports = {
5547
5547
  parse: function parse(src, extensions, opts) {
5548
5548
  var p = new Parser(lexer.lex(src, opts));
@@ -5724,7 +5724,7 @@ var require_runtime = __commonJS({
5724
5724
  var lib = require_lib();
5725
5725
  var arrayFrom = Array.from;
5726
5726
  var supportsIterators = typeof Symbol === "function" && Symbol.iterator && typeof arrayFrom === "function";
5727
- var Frame = /* @__PURE__ */ function() {
5727
+ var Frame = /* @__PURE__ */ (function() {
5728
5728
  function Frame2(parent, isolateWrites) {
5729
5729
  this.variables = /* @__PURE__ */ Object.create(null);
5730
5730
  this.parent = parent;
@@ -5781,7 +5781,7 @@ var require_runtime = __commonJS({
5781
5781
  return this.parent;
5782
5782
  };
5783
5783
  return Frame2;
5784
- }();
5784
+ })();
5785
5785
  function makeMacro(argNames, kwargNames, func) {
5786
5786
  return function macro() {
5787
5787
  for (var _len = arguments.length, macroArgs = new Array(_len), _key = 0; _key < _len; _key++) {
@@ -6071,7 +6071,7 @@ var require_compiler = __commonJS({
6071
6071
  "<=": "<=",
6072
6072
  ">=": ">="
6073
6073
  };
6074
- var Compiler = /* @__PURE__ */ function(_Obj) {
6074
+ var Compiler = /* @__PURE__ */ (function(_Obj) {
6075
6075
  _inheritsLoose(Compiler2, _Obj);
6076
6076
  function Compiler2() {
6077
6077
  return _Obj.apply(this, arguments) || this;
@@ -6959,7 +6959,7 @@ var require_compiler = __commonJS({
6959
6959
  return this.codebuf.join("");
6960
6960
  };
6961
6961
  return Compiler2;
6962
- }(Obj);
6962
+ })(Obj);
6963
6963
  module.exports = {
6964
6964
  compile: function compile(src, asyncFilters, extensions, name, opts) {
6965
6965
  if (opts === void 0) {
@@ -7490,7 +7490,7 @@ var require_loader = __commonJS({
7490
7490
  var path5 = __require("path");
7491
7491
  var _require = require_object();
7492
7492
  var EmitterObj = _require.EmitterObj;
7493
- module.exports = /* @__PURE__ */ function(_EmitterObj) {
7493
+ module.exports = /* @__PURE__ */ (function(_EmitterObj) {
7494
7494
  _inheritsLoose(Loader, _EmitterObj);
7495
7495
  function Loader() {
7496
7496
  return _EmitterObj.apply(this, arguments) || this;
@@ -7503,7 +7503,7 @@ var require_loader = __commonJS({
7503
7503
  return filename.indexOf("./") === 0 || filename.indexOf("../") === 0;
7504
7504
  };
7505
7505
  return Loader;
7506
- }(EmitterObj);
7506
+ })(EmitterObj);
7507
7507
  }
7508
7508
  });
7509
7509
 
@@ -7524,7 +7524,7 @@ var require_precompiled_loader = __commonJS({
7524
7524
  return _setPrototypeOf(o, p);
7525
7525
  }
7526
7526
  var Loader = require_loader();
7527
- var PrecompiledLoader = /* @__PURE__ */ function(_Loader) {
7527
+ var PrecompiledLoader = /* @__PURE__ */ (function(_Loader) {
7528
7528
  _inheritsLoose(PrecompiledLoader2, _Loader);
7529
7529
  function PrecompiledLoader2(compiledTemplates) {
7530
7530
  var _this;
@@ -7546,7 +7546,7 @@ var require_precompiled_loader = __commonJS({
7546
7546
  return null;
7547
7547
  };
7548
7548
  return PrecompiledLoader2;
7549
- }(Loader);
7549
+ })(Loader);
7550
7550
  module.exports = {
7551
7551
  PrecompiledLoader
7552
7552
  };
@@ -7575,7 +7575,7 @@ var require_node_loaders = __commonJS({
7575
7575
  var _require = require_precompiled_loader();
7576
7576
  var PrecompiledLoader = _require.PrecompiledLoader;
7577
7577
  var chokidar;
7578
- var FileSystemLoader = /* @__PURE__ */ function(_Loader) {
7578
+ var FileSystemLoader = /* @__PURE__ */ (function(_Loader) {
7579
7579
  _inheritsLoose(FileSystemLoader2, _Loader);
7580
7580
  function FileSystemLoader2(searchPaths, opts) {
7581
7581
  var _this;
@@ -7637,8 +7637,8 @@ var require_node_loaders = __commonJS({
7637
7637
  return source;
7638
7638
  };
7639
7639
  return FileSystemLoader2;
7640
- }(Loader);
7641
- var NodeResolveLoader = /* @__PURE__ */ function(_Loader2) {
7640
+ })(Loader);
7641
+ var NodeResolveLoader = /* @__PURE__ */ (function(_Loader2) {
7642
7642
  _inheritsLoose(NodeResolveLoader2, _Loader2);
7643
7643
  function NodeResolveLoader2(opts) {
7644
7644
  var _this2;
@@ -7689,7 +7689,7 @@ var require_node_loaders = __commonJS({
7689
7689
  return source;
7690
7690
  };
7691
7691
  return NodeResolveLoader2;
7692
- }(Loader);
7692
+ })(Loader);
7693
7693
  module.exports = {
7694
7694
  FileSystemLoader,
7695
7695
  PrecompiledLoader,
@@ -7959,7 +7959,7 @@ var require_environment = __commonJS({
7959
7959
  }
7960
7960
  }
7961
7961
  };
7962
- var Environment = /* @__PURE__ */ function(_EmitterObj) {
7962
+ var Environment = /* @__PURE__ */ (function(_EmitterObj) {
7963
7963
  _inheritsLoose(Environment2, _EmitterObj);
7964
7964
  function Environment2() {
7965
7965
  return _EmitterObj.apply(this, arguments) || this;
@@ -8201,8 +8201,8 @@ var require_environment = __commonJS({
8201
8201
  return _waterfall(tasks, callback, forceAsync);
8202
8202
  };
8203
8203
  return Environment2;
8204
- }(EmitterObj);
8205
- var Context = /* @__PURE__ */ function(_Obj) {
8204
+ })(EmitterObj);
8205
+ var Context = /* @__PURE__ */ (function(_Obj) {
8206
8206
  _inheritsLoose(Context2, _Obj);
8207
8207
  function Context2() {
8208
8208
  return _Obj.apply(this, arguments) || this;
@@ -8263,8 +8263,8 @@ var require_environment = __commonJS({
8263
8263
  return exported;
8264
8264
  };
8265
8265
  return Context2;
8266
- }(Obj);
8267
- var Template = /* @__PURE__ */ function(_Obj2) {
8266
+ })(Obj);
8267
+ var Template = /* @__PURE__ */ (function(_Obj2) {
8268
8268
  _inheritsLoose(Template2, _Obj2);
8269
8269
  function Template2() {
8270
8270
  return _Obj2.apply(this, arguments) || this;
@@ -8404,7 +8404,7 @@ var require_environment = __commonJS({
8404
8404
  return blocks;
8405
8405
  };
8406
8406
  return Template2;
8407
- }(Obj);
8407
+ })(Obj);
8408
8408
  module.exports = {
8409
8409
  Environment,
8410
8410
  Template
@@ -8902,7 +8902,7 @@ var require_package = __commonJS({
8902
8902
  "package.json"(exports, module) {
8903
8903
  module.exports = {
8904
8904
  name: "@html-validate/eslint-config",
8905
- version: "6.5.5",
8905
+ version: "6.5.7",
8906
8906
  description: "Eslint sharable config used by the various HTML-validate packages",
8907
8907
  keywords: [
8908
8908
  "eslint"
@@ -8938,9 +8938,9 @@ var require_package = __commonJS({
8938
8938
  prepublishOnly: "release-prepublish --retain-scripts"
8939
8939
  },
8940
8940
  dependencies: {
8941
- "@eslint/js": "9.32.0",
8941
+ "@eslint/js": "9.33.0",
8942
8942
  argparse: "2.0.1",
8943
- eslint: "9.32.0",
8943
+ eslint: "9.33.0",
8944
8944
  "eslint-config-prettier": "10.1.8",
8945
8945
  "eslint-formatter-gitlab": "6.0.1",
8946
8946
  "eslint-import-resolver-node": "0.3.9",
@@ -8957,7 +8957,7 @@ var require_package = __commonJS({
8957
8957
  nunjucks: "3.2.4"
8958
8958
  },
8959
8959
  devDependencies: {
8960
- esbuild: "0.25.8",
8960
+ esbuild: "0.25.9",
8961
8961
  "internal-prettier": "6.5.4"
8962
8962
  },
8963
8963
  peerDependencies: {