@etchteam/eslint-config 3.1.5 → 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.5 (2026-04-13)</small>
1
+ ## <small>3.1.7 (2026-04-16)</small>
2
2
 
3
- * Merge pull request #559 from etchteam/dependabot/npm_and_yarn/next/eslint-plugin-next-16.2.3 ([c2cdd9a](https://github.com/etchteam/eslint/commit/c2cdd9a)), closes [#559](https://github.com/etchteam/eslint/issues/559)
4
- * Merge pull request #560 from etchteam/dependabot/npm_and_yarn/globals-17.5.0 ([5150548](https://github.com/etchteam/eslint/commit/5150548)), closes [#560](https://github.com/etchteam/eslint/issues/560)
5
- * fix: Bump globals from 17.4.0 to 17.5.0 ([8878a0c](https://github.com/etchteam/eslint/commit/8878a0c))
6
- * chore: Bump @next/eslint-plugin-next from 16.2.2 to 16.2.3 ([cd57f48](https://github.com/etchteam/eslint/commit/cd57f48))
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.5",
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
  ];