@saasmakers/eslint 1.0.4 → 1.0.5
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/dist/eslint.config.cjs +1 -3
- package/dist/eslint.config.d.cts +1 -2
- package/dist/eslint.config.d.mts +1 -2
- package/dist/eslint.config.d.ts +1 -2
- package/dist/eslint.config.mjs +1 -2
- package/dist/index.d.cts +2864 -530
- package/dist/index.d.mts +2864 -530
- package/dist/index.d.ts +2864 -530
- package/package.json +6 -7
package/dist/eslint.config.cjs
CHANGED
|
@@ -8,7 +8,6 @@ const index$1 = require('./shared/eslint.DhFjwkxh.cjs');
|
|
|
8
8
|
const path = require('node:path');
|
|
9
9
|
const fs = require('node:fs');
|
|
10
10
|
const node_module = require('node:module');
|
|
11
|
-
const storybook = require('eslint-plugin-storybook');
|
|
12
11
|
const turbo = require('eslint-plugin-turbo');
|
|
13
12
|
const zod = require('eslint-plugin-zod');
|
|
14
13
|
require('eslint');
|
|
@@ -35,7 +34,6 @@ const vitest__default = /*#__PURE__*/_interopDefaultCompat(vitest);
|
|
|
35
34
|
const packageJson__default = /*#__PURE__*/_interopDefaultCompat(packageJson);
|
|
36
35
|
const path__namespace = /*#__PURE__*/_interopNamespaceCompat(path);
|
|
37
36
|
const fs__namespace = /*#__PURE__*/_interopNamespaceCompat(fs);
|
|
38
|
-
const storybook__default = /*#__PURE__*/_interopDefaultCompat(storybook);
|
|
39
37
|
const turbo__default = /*#__PURE__*/_interopDefaultCompat(turbo);
|
|
40
38
|
const zod__default = /*#__PURE__*/_interopDefaultCompat(zod);
|
|
41
39
|
|
|
@@ -10776,7 +10774,7 @@ const eslint_config = antfu__default(
|
|
|
10776
10774
|
"ts/no-use-before-define": "off"
|
|
10777
10775
|
}
|
|
10778
10776
|
},
|
|
10779
|
-
|
|
10777
|
+
// ESLint plugins we use
|
|
10780
10778
|
turbo__default.configs["flat/recommended"],
|
|
10781
10779
|
zod__default.configs.recommended,
|
|
10782
10780
|
// Docker Compose
|
package/dist/eslint.config.d.cts
CHANGED
|
@@ -3,7 +3,6 @@ import saasmakers from '@saasmakers/eslint';
|
|
|
3
3
|
import vitest from '@vitest/eslint-plugin';
|
|
4
4
|
import packageJson from 'eslint-plugin-package-json';
|
|
5
5
|
import { Linter, ESLint } from 'eslint';
|
|
6
|
-
import storybook from 'eslint-plugin-storybook';
|
|
7
6
|
import turbo from 'eslint-plugin-turbo';
|
|
8
7
|
import zod from 'eslint-plugin-zod';
|
|
9
8
|
|
|
@@ -55,7 +54,7 @@ var eslint_config = antfu(
|
|
|
55
54
|
"ts/no-use-before-define": "off"
|
|
56
55
|
}
|
|
57
56
|
},
|
|
58
|
-
|
|
57
|
+
// ESLint plugins we use
|
|
59
58
|
turbo.configs["flat/recommended"],
|
|
60
59
|
zod.configs.recommended,
|
|
61
60
|
// Docker Compose
|
package/dist/eslint.config.d.mts
CHANGED
|
@@ -3,7 +3,6 @@ import saasmakers from '@saasmakers/eslint';
|
|
|
3
3
|
import vitest from '@vitest/eslint-plugin';
|
|
4
4
|
import packageJson from 'eslint-plugin-package-json';
|
|
5
5
|
import { Linter, ESLint } from 'eslint';
|
|
6
|
-
import storybook from 'eslint-plugin-storybook';
|
|
7
6
|
import turbo from 'eslint-plugin-turbo';
|
|
8
7
|
import zod from 'eslint-plugin-zod';
|
|
9
8
|
|
|
@@ -55,7 +54,7 @@ var eslint_config = antfu(
|
|
|
55
54
|
"ts/no-use-before-define": "off"
|
|
56
55
|
}
|
|
57
56
|
},
|
|
58
|
-
|
|
57
|
+
// ESLint plugins we use
|
|
59
58
|
turbo.configs["flat/recommended"],
|
|
60
59
|
zod.configs.recommended,
|
|
61
60
|
// Docker Compose
|
package/dist/eslint.config.d.ts
CHANGED
|
@@ -3,7 +3,6 @@ import saasmakers from '@saasmakers/eslint';
|
|
|
3
3
|
import vitest from '@vitest/eslint-plugin';
|
|
4
4
|
import packageJson from 'eslint-plugin-package-json';
|
|
5
5
|
import { Linter, ESLint } from 'eslint';
|
|
6
|
-
import storybook from 'eslint-plugin-storybook';
|
|
7
6
|
import turbo from 'eslint-plugin-turbo';
|
|
8
7
|
import zod from 'eslint-plugin-zod';
|
|
9
8
|
|
|
@@ -55,7 +54,7 @@ var eslint_config = antfu(
|
|
|
55
54
|
"ts/no-use-before-define": "off"
|
|
56
55
|
}
|
|
57
56
|
},
|
|
58
|
-
|
|
57
|
+
// ESLint plugins we use
|
|
59
58
|
turbo.configs["flat/recommended"],
|
|
60
59
|
zod.configs.recommended,
|
|
61
60
|
// Docker Compose
|
package/dist/eslint.config.mjs
CHANGED
|
@@ -6,7 +6,6 @@ import { d as distExports } from './shared/eslint.CohBuu1-.mjs';
|
|
|
6
6
|
import * as path from 'node:path';
|
|
7
7
|
import * as fs from 'node:fs';
|
|
8
8
|
import { createRequire, builtinModules } from 'node:module';
|
|
9
|
-
import storybook from 'eslint-plugin-storybook';
|
|
10
9
|
import turbo from 'eslint-plugin-turbo';
|
|
11
10
|
import zod from 'eslint-plugin-zod';
|
|
12
11
|
import 'eslint';
|
|
@@ -10749,7 +10748,7 @@ const eslint_config = antfu(
|
|
|
10749
10748
|
"ts/no-use-before-define": "off"
|
|
10750
10749
|
}
|
|
10751
10750
|
},
|
|
10752
|
-
|
|
10751
|
+
// ESLint plugins we use
|
|
10753
10752
|
turbo.configs["flat/recommended"],
|
|
10754
10753
|
zod.configs.recommended,
|
|
10755
10754
|
// Docker Compose
|