@netlify/config 18.1.2 → 18.1.3

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@netlify/config",
3
- "version": "18.1.2",
3
+ "version": "18.1.3",
4
4
  "description": "Netlify config module",
5
5
  "type": "module",
6
6
  "exports": "./src/main.js",
package/src/bin/flags.js CHANGED
@@ -1,5 +1,3 @@
1
- /* eslint-disable max-lines */
2
-
3
1
  import process from 'process'
4
2
 
5
3
  import filterObj from 'filter-obj'
@@ -181,4 +179,3 @@ const isUserFlag = function (key, value) {
181
179
  }
182
180
 
183
181
  const INTERNAL_KEYS = new Set(['help', 'version', '_', '$0'])
184
- /* eslint-enable max-lines */
package/src/main.js CHANGED
@@ -1,4 +1,3 @@
1
- /* eslint-disable max-lines */
2
1
  import { getApiClient } from './api/client.js'
3
2
  import { getSiteInfo } from './api/site_info.js'
4
3
  import { getInitialBase, getBase, addBase } from './base.js'
@@ -284,4 +283,3 @@ const resolveFiles = async function ({ config, repositoryRoot, base, baseRelDir
284
283
  const configB = addBase(configA, baseA)
285
284
  return { config: configB, buildDir, base: baseA }
286
285
  }
287
- /* eslint-enable max-lines */
@@ -1,5 +1,3 @@
1
- /* eslint-disable max-lines */
2
-
3
1
  import CronParser from 'cron-parser'
4
2
  import isPlainObj from 'is-plain-obj'
5
3
  import validateNpmPackageName from 'validate-npm-package-name'
@@ -289,4 +287,3 @@ export const POST_NORMALIZE_VALIDATIONS = [
289
287
  example: () => ({ edge_functions: [{ path: '/hello', function: 'hello' }] }),
290
288
  },
291
289
  ]
292
- /* eslint-enable max-lines */