@will-stone/eslint-config 0.1.0 → 0.2.0

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,5 +1,11 @@
1
1
  # @will-stone/eslint-config
2
2
 
3
+ ## 0.2.0
4
+
5
+ ### Minor Changes
6
+
7
+ - 9be0e9d: Added support for ignoring Next.Js build folder.
8
+
3
9
  ## 0.1.0
4
10
 
5
11
  ### Minor Changes
package/eslint-config.js CHANGED
@@ -96,7 +96,7 @@ export default [
96
96
  // Global ignore patterns
97
97
  {
98
98
  // Common build folders
99
- ignores: ['**/.webpack', '**/dist', '**/.astro'],
99
+ ignores: ['**/.webpack', '**/dist', '**/.astro', '**/.next'],
100
100
  },
101
101
 
102
102
  // Base
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@will-stone/eslint-config",
3
- "version": "0.1.0",
3
+ "version": "0.2.0",
4
4
  "description": "Will Stone's ESLint config, using the Flat Config style.",
5
5
  "keywords": [
6
6
  "ESLint"