@saasmakers/eslint 0.1.29 → 0.1.30
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.mjs +1 -2
- package/package.json +1 -1
package/dist/eslint.config.cjs
CHANGED
|
@@ -11,7 +11,6 @@ const noOnlyTests = require('eslint-plugin-no-only-tests');
|
|
|
11
11
|
const packageJson = require('eslint-plugin-package-json');
|
|
12
12
|
const perfectionist = require('eslint-plugin-perfectionist');
|
|
13
13
|
const eslintPluginPnpm = require('eslint-plugin-pnpm');
|
|
14
|
-
const sortClassMembers = require('eslint-plugin-sort-class-members');
|
|
15
14
|
const storybook = require('eslint-plugin-storybook');
|
|
16
15
|
const turbo = require('eslint-plugin-turbo');
|
|
17
16
|
const unicorn = require('eslint-plugin-unicorn');
|
|
@@ -41,7 +40,6 @@ const nodeEslint__default = /*#__PURE__*/_interopDefaultCompat(nodeEslint);
|
|
|
41
40
|
const noOnlyTests__default = /*#__PURE__*/_interopDefaultCompat(noOnlyTests);
|
|
42
41
|
const packageJson__default = /*#__PURE__*/_interopDefaultCompat(packageJson);
|
|
43
42
|
const perfectionist__default = /*#__PURE__*/_interopDefaultCompat(perfectionist);
|
|
44
|
-
const sortClassMembers__default = /*#__PURE__*/_interopDefaultCompat(sortClassMembers);
|
|
45
43
|
const storybook__default = /*#__PURE__*/_interopDefaultCompat(storybook);
|
|
46
44
|
const turbo__default = /*#__PURE__*/_interopDefaultCompat(turbo);
|
|
47
45
|
const unicorn__default = /*#__PURE__*/_interopDefaultCompat(unicorn);
|
|
@@ -22509,7 +22507,7 @@ const config = [
|
|
|
22509
22507
|
...eslintPluginPnpm.configs.json,
|
|
22510
22508
|
...eslintPluginPnpm.configs.yaml,
|
|
22511
22509
|
...storybook__default.configs["flat/recommended"],
|
|
22512
|
-
|
|
22510
|
+
// sortClassMembers.configs['flat/recommended'],
|
|
22513
22511
|
turbo__default.configs["flat/recommended"],
|
|
22514
22512
|
unocss__default,
|
|
22515
22513
|
// Node
|
package/dist/eslint.config.mjs
CHANGED
|
@@ -7,7 +7,6 @@ import noOnlyTests from 'eslint-plugin-no-only-tests';
|
|
|
7
7
|
import packageJson from 'eslint-plugin-package-json';
|
|
8
8
|
import perfectionist from 'eslint-plugin-perfectionist';
|
|
9
9
|
import { configs } from 'eslint-plugin-pnpm';
|
|
10
|
-
import sortClassMembers from 'eslint-plugin-sort-class-members';
|
|
11
10
|
import storybook from 'eslint-plugin-storybook';
|
|
12
11
|
import turbo from 'eslint-plugin-turbo';
|
|
13
12
|
import unicorn from 'eslint-plugin-unicorn';
|
|
@@ -22477,7 +22476,7 @@ const config = [
|
|
|
22477
22476
|
...configs.json,
|
|
22478
22477
|
...configs.yaml,
|
|
22479
22478
|
...storybook.configs["flat/recommended"],
|
|
22480
|
-
sortClassMembers.configs[
|
|
22479
|
+
// sortClassMembers.configs['flat/recommended'],
|
|
22481
22480
|
turbo.configs["flat/recommended"],
|
|
22482
22481
|
unocss,
|
|
22483
22482
|
// Node
|