@agilebot/eslint-config 0.7.0 → 0.7.2

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/README.md CHANGED
@@ -9,9 +9,20 @@ npm install --save-dev eslint \
9
9
  @agilebot/eslint-config
10
10
  ```
11
11
 
12
+ #### CommonJS
13
+
12
14
  ```js
13
15
  // eslint.config.js
14
16
  const { agilebot } = require('@agilebot/eslint-config');
15
17
 
16
18
  module.exports = agilebot(__dirname);
17
19
  ```
20
+
21
+ #### ESM
22
+
23
+ ```js
24
+ // eslint.config.mjs
25
+ import { agilebot } from '@agilebot/eslint-config';
26
+
27
+ export default agilebot(import.meta);
28
+ ```
@@ -1,5 +1,5 @@
1
1
  /**
2
- * @license @agilebot/eslint-config v0.7.0
2
+ * @license @agilebot/eslint-config v0.7.2
3
3
  *
4
4
  * Copyright (c) Agilebot, Inc. and its affiliates.
5
5
  *
@@ -17,7 +17,7 @@ var __require = /* @__PURE__ */ ((x) => typeof require !== "undefined" ? require
17
17
  // <define:__STANDARD_RULES>
18
18
  var define_STANDARD_RULES_default = { "class-methods-use-this": ["off"], "dot-notation": ["off"], "init-declarations": ["off"], "max-params": ["off"], "no-array-constructor": ["off"], "no-dupe-class-members": ["off"], "no-empty-function": ["off"], "no-implied-eval": ["off"], "no-loop-func": ["off"], "no-magic-numbers": ["off"], "no-unused-expressions": ["off"], "no-unused-vars": ["off"], "no-use-before-define": ["off"], "no-useless-constructor": ["off"], "prefer-destructuring": ["off"], "prefer-promise-reject-errors": ["off"], "accessor-pairs": ["error", { setWithoutGet: true, getWithoutSet: false, enforceForClassMembers: true }], "array-callback-return": ["error", { allowImplicit: false, allowVoid: false, checkForEach: false }], "constructor-super": ["error"], curly: ["error", "multi-line"], "default-case-last": ["error"], eqeqeq: ["error", "always", { null: "ignore" }], "new-cap": ["error", { newIsCap: true, capIsNew: false, properties: true }], "no-async-promise-executor": ["error"], "no-caller": ["error"], "no-case-declarations": ["error"], "no-class-assign": ["error"], "no-compare-neg-zero": ["error"], "no-cond-assign": ["error"], "no-const-assign": ["error"], "no-constant-condition": ["error", { checkLoops: false }], "no-control-regex": ["error"], "no-debugger": ["error"], "no-delete-var": ["error"], "no-dupe-args": ["error"], "no-dupe-keys": ["error"], "no-duplicate-case": ["error"], "no-useless-backreference": ["error"], "no-empty": ["error", { allowEmptyCatch: true }], "no-empty-character-class": ["error"], "no-empty-pattern": ["error"], "no-eval": ["error"], "no-ex-assign": ["error"], "no-extend-native": ["error"], "no-extra-bind": ["error"], "no-extra-boolean-cast": ["error"], "no-fallthrough": ["error"], "no-func-assign": ["error"], "no-global-assign": ["error"], "no-import-assign": ["error"], "no-invalid-regexp": ["error"], "no-irregular-whitespace": ["error"], "no-iterator": ["error"], "no-labels": ["error", { allowLoop: false, allowSwitch: false }], "no-lone-blocks": ["error"], "no-loss-of-precision": ["error"], "no-misleading-character-class": ["error"], "no-prototype-builtins": ["error"], "no-useless-catch": ["error"], "no-multi-str": ["error"], "no-new": ["error"], "no-new-func": ["error"], "no-new-native-nonconstructor": ["error"], "no-new-wrappers": ["error"], "no-obj-calls": ["error"], "no-object-constructor": ["error"], "no-octal": ["error"], "no-octal-escape": ["error"], "no-proto": ["error"], "no-regex-spaces": ["error"], "no-return-assign": ["error", "except-parens"], "no-self-assign": ["error", { props: true }], "no-self-compare": ["error"], "no-sequences": ["error"], "no-shadow-restricted-names": ["error"], "no-sparse-arrays": ["error"], "no-template-curly-in-string": ["error"], "no-this-before-super": ["error"], "no-throw-literal": ["off"], "no-unexpected-multiline": ["error"], "no-unmodified-loop-condition": ["error"], "no-unneeded-ternary": ["error", { defaultAssignment: false }], "no-unreachable": ["error"], "no-unreachable-loop": ["error"], "no-unsafe-finally": ["error"], "no-unsafe-negation": ["error"], "no-useless-call": ["error"], "no-useless-computed-key": ["error"], "no-useless-escape": ["error"], "no-useless-rename": ["error"], "no-useless-return": ["error"], "no-var": ["error"], "no-void": ["error", { allowAsStatement: true }], "no-with": ["error"], "object-shorthand": ["warn", "properties"], "one-var": ["error", { initialized: "never" }], "prefer-const": ["error", { destructuring: "all", ignoreReadBeforeAssign: false }], "prefer-regex-literals": ["error", { disallowRedundantWrapping: true }], "symbol-description": ["error"], "unicode-bom": ["error", "never"], "use-isnan": ["error", { enforceForSwitchCase: true, enforceForIndexOf: true }], "valid-typeof": ["error", { requireStringLiterals: true }], yoda: ["error", "never"], "import/export": ["error"], "import/first": ["error"], "import/no-absolute-path": ["error", { esmodule: true, commonjs: true, amd: false }], "import/no-duplicates": ["error"], "import/no-named-default": ["error"], "import/no-webpack-loader-syntax": ["error"], "n/handle-callback-err": ["error", "^(err|error)$"], "n/no-callback-literal": ["error"], "n/no-deprecated-api": ["error"], "n/no-exports-assign": ["error"], "n/no-new-require": ["error"], "n/no-path-concat": ["error"], "n/process-exit-as-throw": ["error"], "promise/param-names": ["error"], "@typescript-eslint/adjacent-overload-signatures": ["error"], "@typescript-eslint/array-type": ["error", { default: "array-simple" }], "@typescript-eslint/await-thenable": ["error"], "@typescript-eslint/ban-ts-comment": ["error", { "ts-expect-error": "allow-with-description", "ts-ignore": true, "ts-nocheck": true, "ts-check": false, minimumDescriptionLength: 3 }], "@typescript-eslint/ban-tslint-comment": ["error"], "@typescript-eslint/class-literal-property-style": ["error", "fields"], "@typescript-eslint/class-methods-use-this": ["error", { exceptMethods: [], enforceForClassFields: true, ignoreOverrideMethods: false, ignoreClassesThatImplementAnInterface: false }], "@typescript-eslint/consistent-generic-constructors": ["error", "constructor"], "@typescript-eslint/consistent-indexed-object-style": ["error", "record"], "@typescript-eslint/consistent-type-assertions": ["error", { assertionStyle: "as", objectLiteralTypeAssertions: "never" }], "@typescript-eslint/consistent-type-definitions": ["error", "interface"], "@typescript-eslint/consistent-type-exports": ["error", { fixMixedExportsWithInlineTypeSpecifier: true }], "@typescript-eslint/consistent-type-imports": ["error", { prefer: "type-imports", disallowTypeAnnotations: true, fixStyle: "inline-type-imports" }], "@typescript-eslint/dot-notation": ["error", { allowIndexSignaturePropertyAccess: false, allowKeywords: true, allowPattern: "", allowPrivateClassPropertyAccess: false, allowProtectedClassPropertyAccess: false }], "@typescript-eslint/explicit-function-return-type": ["error", { allowExpressions: true, allowHigherOrderFunctions: true, allowTypedFunctionExpressions: true, allowDirectConstAssertionInArrowFunctions: true }], "@typescript-eslint/init-declarations": ["error", "always"], "@typescript-eslint/max-params": ["error", { max: 4 }], "@typescript-eslint/method-signature-style": ["error"], "@typescript-eslint/naming-convention": ["error", { selector: "variableLike", leadingUnderscore: "allow", trailingUnderscore: "allow", format: ["camelCase", "PascalCase", "UPPER_CASE"] }], "@typescript-eslint/no-array-constructor": ["error"], "@typescript-eslint/no-array-delete": ["error"], "@typescript-eslint/no-base-to-string": ["error"], "@typescript-eslint/no-confusing-non-null-assertion": ["error"], "@typescript-eslint/no-confusing-void-expression": ["error", { ignoreArrowShorthand: false, ignoreVoidOperator: false }], "@typescript-eslint/no-deprecated": ["warn"], "@typescript-eslint/no-dupe-class-members": ["error"], "@typescript-eslint/no-duplicate-enum-values": ["error"], "@typescript-eslint/no-duplicate-type-constituents": ["error", { ignoreIntersections: false, ignoreUnions: false }], "@typescript-eslint/no-dynamic-delete": ["error"], "@typescript-eslint/no-empty-function": ["error", { allow: [] }], "@typescript-eslint/no-empty-object-type": ["error", { allowInterfaces: "with-single-extends", allowObjectTypes: "never" }], "@typescript-eslint/no-explicit-any": ["error", { fixToUnknown: false, ignoreRestArgs: false }], "@typescript-eslint/no-extra-non-null-assertion": ["error"], "@typescript-eslint/no-extraneous-class": ["error", { allowWithDecorator: true }], "@typescript-eslint/no-floating-promises": ["error"], "@typescript-eslint/no-for-in-array": ["error"], "@typescript-eslint/no-implied-eval": ["error"], "@typescript-eslint/no-import-type-side-effects": ["error"], "@typescript-eslint/no-inferrable-types": ["error", { ignoreParameters: false, ignoreProperties: false }], "@typescript-eslint/no-invalid-void-type": ["error"], "@typescript-eslint/no-loop-func": ["error"], "@typescript-eslint/no-magic-numbers": ["error", { ignore: [], ignoreArrayIndexes: false, ignoreDefaultValues: false, ignoreClassFieldInitialValues: false, enforceConst: false, detectObjects: true, ignoreEnums: true, ignoreNumericLiteralTypes: false, ignoreReadonlyClassProperties: true, ignoreTypeIndexes: false }], "@typescript-eslint/no-meaningless-void-operator": ["error", { checkNever: true }], "@typescript-eslint/no-misused-new": ["error"], "@typescript-eslint/no-misused-promises": ["error"], "@typescript-eslint/no-mixed-enums": ["error"], "@typescript-eslint/no-namespace": ["error"], "@typescript-eslint/no-non-null-asserted-nullish-coalescing": ["error"], "@typescript-eslint/no-non-null-asserted-optional-chain": ["error"], "@typescript-eslint/no-non-null-assertion": ["error"], "@typescript-eslint/no-redundant-type-constituents": ["error"], "@typescript-eslint/no-require-imports": ["error", { allow: [], allowAsImport: false }], "@typescript-eslint/no-this-alias": ["error", { allowDestructuring: true }], "@typescript-eslint/no-unnecessary-boolean-literal-compare": ["error"], "@typescript-eslint/no-unnecessary-condition": ["error", { allowConstantLoopConditions: true }], "@typescript-eslint/no-unnecessary-parameter-property-assignment": ["error"], "@typescript-eslint/no-unnecessary-qualifier": ["error"], "@typescript-eslint/no-unnecessary-template-expression": ["error"], "@typescript-eslint/no-unnecessary-type-arguments": ["error"], "@typescript-eslint/no-unnecessary-type-assertion": ["error"], "@typescript-eslint/no-unnecessary-type-constraint": ["error"], "@typescript-eslint/no-unnecessary-type-parameters": ["error"], "@typescript-eslint/no-unsafe-argument": ["error"], "@typescript-eslint/no-unsafe-assignment": ["error"], "@typescript-eslint/no-unsafe-call": ["error"], "@typescript-eslint/no-unsafe-declaration-merging": ["error"], "@typescript-eslint/no-unsafe-enum-comparison": ["error"], "@typescript-eslint/no-unsafe-function-type": ["error"], "@typescript-eslint/no-unsafe-member-access": ["error"], "@typescript-eslint/no-unsafe-return": ["error"], "@typescript-eslint/no-unsafe-unary-minus": ["error"], "@typescript-eslint/no-unused-expressions": ["error", { allowShortCircuit: true, allowTernary: true, allowTaggedTemplates: true, enforceForJSX: false }], "@typescript-eslint/no-unused-vars": ["error", { args: "none", caughtErrors: "none", ignoreRestSiblings: true, vars: "all" }], "@typescript-eslint/no-use-before-define": ["error", { functions: false, classes: false, enums: false, variables: false, typedefs: false }], "@typescript-eslint/no-useless-constructor": ["error"], "@typescript-eslint/no-useless-empty-export": ["error"], "@typescript-eslint/no-wrapper-object-types": ["error"], "@typescript-eslint/non-nullable-type-assertion-style": ["error"], "@typescript-eslint/only-throw-error": ["error", { allowThrowingAny: false, allowThrowingUnknown: false }], "@typescript-eslint/prefer-as-const": ["error"], "@typescript-eslint/prefer-destructuring": ["error", { array: true, object: true }, { enforceForRenamedProperties: true, enforceForDeclarationWithTypeAnnotation: false }], "@typescript-eslint/prefer-function-type": ["error"], "@typescript-eslint/prefer-includes": ["error"], "@typescript-eslint/prefer-nullish-coalescing": ["error", { ignoreConditionalTests: false, ignoreMixedLogicalExpressions: false }], "@typescript-eslint/prefer-optional-chain": ["error"], "@typescript-eslint/prefer-promise-reject-errors": ["error"], "@typescript-eslint/prefer-readonly": ["error"], "@typescript-eslint/prefer-reduce-type-parameter": ["error"], "@typescript-eslint/prefer-return-this-type": ["error"], "@typescript-eslint/promise-function-async": ["error"], "@typescript-eslint/require-array-sort-compare": ["error", { ignoreStringArrays: true }], "@typescript-eslint/restrict-plus-operands": ["error", { skipCompoundAssignments: false }], "@typescript-eslint/restrict-template-expressions": ["error", { allowNumber: true }], "@typescript-eslint/return-await": ["error", "always"], "@typescript-eslint/strict-boolean-expressions": ["error", { allowString: false, allowNumber: false, allowNullableObject: false, allowNullableBoolean: false, allowNullableString: false, allowNullableNumber: false, allowAny: false }], "@typescript-eslint/triple-slash-reference": ["error", { lib: "never", path: "never", types: "never" }], "@typescript-eslint/unbound-method": ["error", { ignoreStatic: false }] };
19
19
 
20
- // ../../node_modules/.pnpm/tsup@8.3.5_jiti@2.3.3_postcss@8.4.47_tsx@4.19.2_typescript@5.5.4_yaml@2.6.1/node_modules/tsup/assets/esm_shims.js
20
+ // ../../node_modules/.pnpm/tsup@8.3.5_jiti@2.3.3_postcss@8.4.49_tsx@4.19.2_typescript@5.7.2_yaml@2.6.1/node_modules/tsup/assets/esm_shims.js
21
21
  import { fileURLToPath } from "url";
22
22
  import path from "path";
23
23
  var getFilename = () => fileURLToPath(import.meta.url);
package/dist/cli.js CHANGED
@@ -1,5 +1,5 @@
1
1
  /**
2
- * @license @agilebot/eslint-config v0.7.0
2
+ * @license @agilebot/eslint-config v0.7.2
3
3
  *
4
4
  * Copyright (c) Agilebot, Inc. and its affiliates.
5
5
  *
package/dist/cli.mjs CHANGED
@@ -1,5 +1,5 @@
1
1
  /**
2
- * @license @agilebot/eslint-config v0.7.0
2
+ * @license @agilebot/eslint-config v0.7.2
3
3
  *
4
4
  * Copyright (c) Agilebot, Inc. and its affiliates.
5
5
  *
@@ -10,7 +10,7 @@
10
10
  import {
11
11
  CLI_NAME,
12
12
  __require
13
- } from "./chunk-LC56YWFZ.mjs";
13
+ } from "./chunk-R26PCKQR.mjs";
14
14
 
15
15
  // src/cli/index.ts
16
16
  import { isCI } from "@agilebot/eslint-utils";
package/dist/index.d.mts CHANGED
@@ -86,6 +86,6 @@ interface FactoryOptions {
86
86
  importResolver?: 'typescript' | 'oxc';
87
87
  }
88
88
 
89
- declare function factory(root: string, options?: FactoryOptions): FlatConfigItem[];
89
+ declare function factory(root: string | ImportMeta, options?: FactoryOptions): FlatConfigItem[];
90
90
 
91
91
  export { factory as agilebot };
package/dist/index.d.ts CHANGED
@@ -86,6 +86,6 @@ interface FactoryOptions {
86
86
  importResolver?: 'typescript' | 'oxc';
87
87
  }
88
88
 
89
- declare function factory(root: string, options?: FactoryOptions): FlatConfigItem[];
89
+ declare function factory(root: string | ImportMeta, options?: FactoryOptions): FlatConfigItem[];
90
90
 
91
91
  export { factory as agilebot };
package/dist/index.js CHANGED
@@ -1,5 +1,5 @@
1
1
  /**
2
- * @license @agilebot/eslint-config v0.7.0
2
+ * @license @agilebot/eslint-config v0.7.2
3
3
  *
4
4
  * Copyright (c) Agilebot, Inc. and its affiliates.
5
5
  *
@@ -48,6 +48,8 @@ var define_STANDARD_RULES_default = { "class-methods-use-this": ["off"], "dot-no
48
48
 
49
49
  // src/factory/index.ts
50
50
  var import_node_assert = __toESM(require("assert"));
51
+ var import_node_url = require("url");
52
+ var import_node_path3 = __toESM(require("path"));
51
53
  var import_eslint_utils3 = require("@agilebot/eslint-utils");
52
54
  var parserTs = __toESM(require("@typescript-eslint/parser"));
53
55
  var parserVue = __toESM(require("vue-eslint-parser"));
@@ -616,6 +618,7 @@ function react(opts) {
616
618
  "@eslint-react/dom/no-dangerously-set-innerhtml-with-children": "error",
617
619
  "@eslint-react/dom/no-find-dom-node": "error",
618
620
  "@eslint-react/dom/no-render-return-value": "error",
621
+ "@eslint-react/dom/no-unknown-property": "error",
619
622
  // recommended rules from @eslint-react/hooks-extra
620
623
  "@eslint-react/hooks-extra/prefer-use-state-lazy-initialization": "warn",
621
624
  // recommended rules react-hooks
@@ -669,7 +672,6 @@ function reactJsOnly() {
669
672
  "react/jsx-no-undef": "error",
670
673
  "react/jsx-uses-react": "error",
671
674
  "react/no-unescaped-entities": "error",
672
- "react/no-unknown-property": "error",
673
675
  "react/react-in-jsx-scope": "error",
674
676
  "react/require-render-return": "error"
675
677
  }
@@ -1011,7 +1013,15 @@ function godaddy() {
1011
1013
  // src/factory/index.ts
1012
1014
  function factory(root, options) {
1013
1015
  import_node_assert.default.ok(root, "root option is required");
1014
- const tsconfigFiles = (0, import_eslint_utils3.findTsconfigFiles)(root, {
1016
+ let rootDir;
1017
+ if (typeof root === "string") {
1018
+ rootDir = root;
1019
+ } else if (root?.url) {
1020
+ rootDir = import_node_path3.default.dirname((0, import_node_url.fileURLToPath)(root.url));
1021
+ } else {
1022
+ throw new Error("root must be a string or ImportMeta");
1023
+ }
1024
+ const tsconfigFiles = (0, import_eslint_utils3.findTsconfigFiles)(rootDir, {
1015
1025
  absolute: true
1016
1026
  });
1017
1027
  const defaultOptions = {
@@ -1043,7 +1053,7 @@ function factory(root, options) {
1043
1053
  if (options.import) {
1044
1054
  commonConfigs.push(
1045
1055
  imports({
1046
- packageDir: root,
1056
+ packageDir: rootDir,
1047
1057
  devDependencies: options.devDependencies,
1048
1058
  monorepoScope: options.monorepoScope,
1049
1059
  coreModules: options.coreModules,
@@ -1135,7 +1145,7 @@ function factory(root, options) {
1135
1145
  config.push(...commonConfigs);
1136
1146
  config.push(
1137
1147
  agilebot({
1138
- root,
1148
+ root: rootDir,
1139
1149
  monorepoScope: options.monorepoScope
1140
1150
  })
1141
1151
  );
package/dist/index.mjs CHANGED
@@ -1,5 +1,5 @@
1
1
  /**
2
- * @license @agilebot/eslint-config v0.7.0
2
+ * @license @agilebot/eslint-config v0.7.2
3
3
  *
4
4
  * Copyright (c) Agilebot, Inc. and its affiliates.
5
5
  *
@@ -16,10 +16,12 @@ import {
16
16
  VUE_GLOBS,
17
17
  __dirname,
18
18
  define_STANDARD_RULES_default
19
- } from "./chunk-LC56YWFZ.mjs";
19
+ } from "./chunk-R26PCKQR.mjs";
20
20
 
21
21
  // src/factory/index.ts
22
22
  import assert from "node:assert";
23
+ import { fileURLToPath } from "node:url";
24
+ import path2 from "node:path";
23
25
  import { findTsconfigFiles } from "@agilebot/eslint-utils";
24
26
  import * as parserTs from "@typescript-eslint/parser";
25
27
  import * as parserVue from "vue-eslint-parser";
@@ -541,6 +543,7 @@ function react(opts) {
541
543
  "@eslint-react/dom/no-dangerously-set-innerhtml-with-children": "error",
542
544
  "@eslint-react/dom/no-find-dom-node": "error",
543
545
  "@eslint-react/dom/no-render-return-value": "error",
546
+ "@eslint-react/dom/no-unknown-property": "error",
544
547
  // recommended rules from @eslint-react/hooks-extra
545
548
  "@eslint-react/hooks-extra/prefer-use-state-lazy-initialization": "warn",
546
549
  // recommended rules react-hooks
@@ -594,7 +597,6 @@ function reactJsOnly() {
594
597
  "react/jsx-no-undef": "error",
595
598
  "react/jsx-uses-react": "error",
596
599
  "react/no-unescaped-entities": "error",
597
- "react/no-unknown-property": "error",
598
600
  "react/react-in-jsx-scope": "error",
599
601
  "react/require-render-return": "error"
600
602
  }
@@ -934,7 +936,15 @@ function godaddy() {
934
936
  // src/factory/index.ts
935
937
  function factory(root, options) {
936
938
  assert.ok(root, "root option is required");
937
- const tsconfigFiles = findTsconfigFiles(root, {
939
+ let rootDir;
940
+ if (typeof root === "string") {
941
+ rootDir = root;
942
+ } else if (root?.url) {
943
+ rootDir = path2.dirname(fileURLToPath(root.url));
944
+ } else {
945
+ throw new Error("root must be a string or ImportMeta");
946
+ }
947
+ const tsconfigFiles = findTsconfigFiles(rootDir, {
938
948
  absolute: true
939
949
  });
940
950
  const defaultOptions = {
@@ -966,7 +976,7 @@ function factory(root, options) {
966
976
  if (options.import) {
967
977
  commonConfigs.push(
968
978
  imports({
969
- packageDir: root,
979
+ packageDir: rootDir,
970
980
  devDependencies: options.devDependencies,
971
981
  monorepoScope: options.monorepoScope,
972
982
  coreModules: options.coreModules,
@@ -1058,7 +1068,7 @@ function factory(root, options) {
1058
1068
  config.push(...commonConfigs);
1059
1069
  config.push(
1060
1070
  agilebot({
1061
- root,
1071
+ root: rootDir,
1062
1072
  monorepoScope: options.monorepoScope
1063
1073
  })
1064
1074
  );
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@agilebot/eslint-config",
3
- "version": "0.7.0",
3
+ "version": "0.7.2",
4
4
  "description": "Agilebot's ESLint config",
5
5
  "bin": {
6
6
  "eslint-agilebot": "bin/eslint-agilebot"
@@ -58,7 +58,7 @@
58
58
  "picocolors": "^1.1.0",
59
59
  "vue-eslint-parser": "^9.4.3",
60
60
  "yargs": "^17.7.2",
61
- "@agilebot/eslint-utils": "0.7.0"
61
+ "@agilebot/eslint-utils": "0.7.2"
62
62
  },
63
63
  "devDependencies": {
64
64
  "@types/yargs": "^17.0.33",
@@ -66,7 +66,7 @@
66
66
  },
67
67
  "peerDependencies": {
68
68
  "eslint": "^8.57.0 || ^9.0.0",
69
- "@agilebot/eslint-plugin": "0.7.0"
69
+ "@agilebot/eslint-plugin": "0.7.2"
70
70
  },
71
71
  "files": [
72
72
  "bin",