@etchteam/eslint-config 3.1.6 → 3.1.7

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/CHANGELOG.md CHANGED
@@ -1,6 +1,6 @@
1
- ## <small>3.1.6 (2026-04-14)</small>
1
+ ## <small>3.1.7 (2026-04-16)</small>
2
2
 
3
- * Merge pull request #561 from etchteam/dependabot/npm_and_yarn/darraghor/eslint-plugin-nestjs-typed-7 ([691978a](https://github.com/etchteam/eslint/commit/691978a)), closes [#561](https://github.com/etchteam/eslint/issues/561)
4
- * Merge pull request #562 from etchteam/dependabot/npm_and_yarn/typescript-eslint-8.58.2 ([6d685d7](https://github.com/etchteam/eslint/commit/6d685d7)), closes [#562](https://github.com/etchteam/eslint/issues/562)
5
- * fix: Bump typescript-eslint from 8.58.1 to 8.58.2 ([537f832](https://github.com/etchteam/eslint/commit/537f832))
6
- * chore: Bump @darraghor/eslint-plugin-nestjs-typed from 7.1.28 to 7.1.29 ([e627492](https://github.com/etchteam/eslint/commit/e627492))
3
+ * Merge pull request #563 from etchteam/dependabot/npm_and_yarn/npm_and_yarn-da47bb892b ([ef34c14](https://github.com/etchteam/eslint/commit/ef34c14)), closes [#563](https://github.com/etchteam/eslint/issues/563)
4
+ * Merge pull request #564 from etchteam/fix/webc-browser-globals ([b10f47a](https://github.com/etchteam/eslint/commit/b10f47a)), closes [#564](https://github.com/etchteam/eslint/issues/564)
5
+ * fix: add browser globals to webc virtual JS files ([b487521](https://github.com/etchteam/eslint/commit/b487521))
6
+ * chore: Bump hono in the npm_and_yarn group across 1 directory ([1d5c097](https://github.com/etchteam/eslint/commit/1d5c097))
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@etchteam/eslint-config",
3
- "version": "3.1.6",
3
+ "version": "3.1.7",
4
4
  "description": "Etch's standard eslint config",
5
5
  "type": "module",
6
6
  "main": "src/index.mjs",
@@ -1,3 +1,5 @@
1
+ import globals from 'globals';
2
+
1
3
  import webcPlugin from '../plugins/webc-processor.mjs';
2
4
 
3
5
  /**
@@ -15,4 +17,10 @@ export default [
15
17
  files: ['**/*.webc'],
16
18
  processor: webcPlugin.processors.webc,
17
19
  },
20
+ {
21
+ files: ['**/*.webc/*.js'],
22
+ languageOptions: {
23
+ globals: globals.browser,
24
+ },
25
+ },
18
26
  ];