@saasmakers/eslint 0.1.73 → 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/dist/eslint.config.cjs
CHANGED
|
@@ -10,6 +10,7 @@ const fs = require('node:fs');
|
|
|
10
10
|
const node_module = require('node:module');
|
|
11
11
|
const storybook = require('eslint-plugin-storybook');
|
|
12
12
|
const turbo = require('eslint-plugin-turbo');
|
|
13
|
+
const zod = require('eslint-plugin-zod');
|
|
13
14
|
require('eslint');
|
|
14
15
|
require('eslint/use-at-your-own-risk');
|
|
15
16
|
|
|
@@ -36,6 +37,7 @@ const path__namespace = /*#__PURE__*/_interopNamespaceCompat(path);
|
|
|
36
37
|
const fs__namespace = /*#__PURE__*/_interopNamespaceCompat(fs);
|
|
37
38
|
const storybook__default = /*#__PURE__*/_interopDefaultCompat(storybook);
|
|
38
39
|
const turbo__default = /*#__PURE__*/_interopDefaultCompat(turbo);
|
|
40
|
+
const zod__default = /*#__PURE__*/_interopDefaultCompat(zod);
|
|
39
41
|
|
|
40
42
|
const name = 'eslint-plugin-perfectionist';
|
|
41
43
|
const version = '5.5.0';
|
|
@@ -10767,6 +10769,7 @@ const eslint_config = antfu__default(
|
|
|
10767
10769
|
},
|
|
10768
10770
|
...storybook__default.configs["flat/recommended"],
|
|
10769
10771
|
turbo__default.configs["flat/recommended"],
|
|
10772
|
+
zod__default.configs.recommended,
|
|
10770
10773
|
// Package.json
|
|
10771
10774
|
packageJson__default.configs.recommended,
|
|
10772
10775
|
packageJson__default.configs.stylistic,
|
package/dist/eslint.config.d.cts
CHANGED
|
@@ -5,6 +5,7 @@ import packageJson from 'eslint-plugin-package-json';
|
|
|
5
5
|
import { Linter, ESLint } from 'eslint';
|
|
6
6
|
import storybook from 'eslint-plugin-storybook';
|
|
7
7
|
import turbo from 'eslint-plugin-turbo';
|
|
8
|
+
import zod from 'eslint-plugin-zod';
|
|
8
9
|
|
|
9
10
|
interface PluginConfigs extends Record<
|
|
10
11
|
string,
|
|
@@ -47,6 +48,7 @@ var eslint_config = antfu(
|
|
|
47
48
|
},
|
|
48
49
|
...storybook.configs["flat/recommended"],
|
|
49
50
|
turbo.configs["flat/recommended"],
|
|
51
|
+
zod.configs.recommended,
|
|
50
52
|
// Package.json
|
|
51
53
|
packageJson.configs.recommended,
|
|
52
54
|
packageJson.configs.stylistic,
|
package/dist/eslint.config.d.mts
CHANGED
|
@@ -5,6 +5,7 @@ import packageJson from 'eslint-plugin-package-json';
|
|
|
5
5
|
import { Linter, ESLint } from 'eslint';
|
|
6
6
|
import storybook from 'eslint-plugin-storybook';
|
|
7
7
|
import turbo from 'eslint-plugin-turbo';
|
|
8
|
+
import zod from 'eslint-plugin-zod';
|
|
8
9
|
|
|
9
10
|
interface PluginConfigs extends Record<
|
|
10
11
|
string,
|
|
@@ -47,6 +48,7 @@ var eslint_config = antfu(
|
|
|
47
48
|
},
|
|
48
49
|
...storybook.configs["flat/recommended"],
|
|
49
50
|
turbo.configs["flat/recommended"],
|
|
51
|
+
zod.configs.recommended,
|
|
50
52
|
// Package.json
|
|
51
53
|
packageJson.configs.recommended,
|
|
52
54
|
packageJson.configs.stylistic,
|
package/dist/eslint.config.d.ts
CHANGED
|
@@ -5,6 +5,7 @@ import packageJson from 'eslint-plugin-package-json';
|
|
|
5
5
|
import { Linter, ESLint } from 'eslint';
|
|
6
6
|
import storybook from 'eslint-plugin-storybook';
|
|
7
7
|
import turbo from 'eslint-plugin-turbo';
|
|
8
|
+
import zod from 'eslint-plugin-zod';
|
|
8
9
|
|
|
9
10
|
interface PluginConfigs extends Record<
|
|
10
11
|
string,
|
|
@@ -47,6 +48,7 @@ var eslint_config = antfu(
|
|
|
47
48
|
},
|
|
48
49
|
...storybook.configs["flat/recommended"],
|
|
49
50
|
turbo.configs["flat/recommended"],
|
|
51
|
+
zod.configs.recommended,
|
|
50
52
|
// Package.json
|
|
51
53
|
packageJson.configs.recommended,
|
|
52
54
|
packageJson.configs.stylistic,
|
package/dist/eslint.config.mjs
CHANGED
|
@@ -8,6 +8,7 @@ import * as fs from 'node:fs';
|
|
|
8
8
|
import { createRequire, builtinModules } from 'node:module';
|
|
9
9
|
import storybook from 'eslint-plugin-storybook';
|
|
10
10
|
import turbo from 'eslint-plugin-turbo';
|
|
11
|
+
import zod from 'eslint-plugin-zod';
|
|
11
12
|
import 'eslint';
|
|
12
13
|
import 'eslint/use-at-your-own-risk';
|
|
13
14
|
|
|
@@ -10741,6 +10742,7 @@ const eslint_config = antfu(
|
|
|
10741
10742
|
},
|
|
10742
10743
|
...storybook.configs["flat/recommended"],
|
|
10743
10744
|
turbo.configs["flat/recommended"],
|
|
10745
|
+
zod.configs.recommended,
|
|
10744
10746
|
// Package.json
|
|
10745
10747
|
packageJson.configs.recommended,
|
|
10746
10748
|
packageJson.configs.stylistic,
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@saasmakers/eslint",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.2.0",
|
|
4
4
|
"private": false,
|
|
5
5
|
"description": "Shared ESLint config and rules for SaaS Makers projects",
|
|
6
6
|
"repository": {
|
|
@@ -37,6 +37,7 @@
|
|
|
37
37
|
"eslint-plugin-package-json": "0.31.0",
|
|
38
38
|
"eslint-plugin-storybook": "10.2.8",
|
|
39
39
|
"eslint-plugin-turbo": "2.8.10",
|
|
40
|
+
"eslint-plugin-zod": "3.4.0",
|
|
40
41
|
"typescript-eslint": "8.55.0"
|
|
41
42
|
},
|
|
42
43
|
"devDependencies": {
|