@futurebrand/dev-tools 2.1.2 → 2.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.
@@ -1,5 +1,5 @@
1
1
  import { type ConfigArray } from 'typescript-eslint';
2
- export declare const MAX_COMPLEXITY = 15;
2
+ export declare const MAX_COMPLEXITY = 20;
3
3
  export declare const MAX_LINES = 450;
4
4
  interface IConfigParams {
5
5
  node?: boolean;
@@ -2,7 +2,7 @@ import pluginJs from '@eslint/js';
2
2
  import prettierRecommended from 'eslint-plugin-prettier/recommended';
3
3
  import globals from 'globals';
4
4
  import tseslint from 'typescript-eslint';
5
- export const MAX_COMPLEXITY = 15;
5
+ export const MAX_COMPLEXITY = 20;
6
6
  export const MAX_LINES = 450;
7
7
  export function getBaseConfig({ node = false, browser = false, typescript = true, prettier = true, }) {
8
8
  const configs = [];
@@ -23,6 +23,6 @@ export const EslintNodeConfigs = tseslint.config([
23
23
  },
24
24
  },
25
25
  {
26
- ignores: ['strapi/**/*', 'types/generated/**/*'],
26
+ ignores: ['strapi/**/*', '.strapi/**/*', 'types/generated/**/*'],
27
27
  },
28
28
  ]);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@futurebrand/dev-tools",
3
- "version": "2.1.2",
3
+ "version": "2.2.0",
4
4
  "description": "FutureBrand Dev Tools",
5
5
  "scripts": {
6
6
  "build": "tsc && tsc-alias",