@saasmakers/eslint 0.1.36 → 0.1.37

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.
@@ -10,7 +10,6 @@ const eslintMergeProcessors = require('eslint-merge-processors');
10
10
  const jsonc = require('eslint-plugin-jsonc');
11
11
  const nodeEslint = require('eslint-plugin-n');
12
12
  const noOnlyTests = require('eslint-plugin-no-only-tests');
13
- const noSecrets = require('eslint-plugin-no-secrets');
14
13
  const packageJson = require('eslint-plugin-package-json');
15
14
  const perfectionist = require('eslint-plugin-perfectionist');
16
15
  const eslintPluginPnpm = require('eslint-plugin-pnpm');
@@ -45,7 +44,6 @@ const unocss__default = /*#__PURE__*/_interopDefaultCompat(unocss);
45
44
  const jsonc__default = /*#__PURE__*/_interopDefaultCompat(jsonc);
46
45
  const nodeEslint__default = /*#__PURE__*/_interopDefaultCompat(nodeEslint);
47
46
  const noOnlyTests__default = /*#__PURE__*/_interopDefaultCompat(noOnlyTests);
48
- const noSecrets__default = /*#__PURE__*/_interopDefaultCompat(noSecrets);
49
47
  const packageJson__default = /*#__PURE__*/_interopDefaultCompat(packageJson);
50
48
  const perfectionist__default = /*#__PURE__*/_interopDefaultCompat(perfectionist);
51
49
  const sonarjs__default = /*#__PURE__*/_interopDefaultCompat(sonarjs);
@@ -22508,12 +22506,6 @@ const config = [
22508
22506
  files: ["**/*.json", "**/*.jsonc", "**/*.json5"],
22509
22507
  languageOptions: {
22510
22508
  parser: jsoncParser__default
22511
- },
22512
- plugins: {
22513
- "no-secrets": noSecrets__default
22514
- },
22515
- rules: {
22516
- "no-secrets/no-secrets": ["error", { additionalDelimiters: ["(?=[A-Z][a-z])"], tolerance: 4.1 }]
22517
22509
  }
22518
22510
  },
22519
22511
  // Stylistic
@@ -22565,16 +22557,6 @@ const config = [
22565
22557
  "no-only-tests/no-only-tests": "error"
22566
22558
  }
22567
22559
  },
22568
- // No Secrets
22569
- {
22570
- files: ["**/*.{js,mjs,ts,mts,vue}"],
22571
- plugins: {
22572
- "no-secrets": noSecrets__default
22573
- },
22574
- rules: {
22575
- "no-secrets/no-secrets": ["error", { additionalDelimiters: ["(?=[A-Z][a-z])"], tolerance: 4.1 }]
22576
- }
22577
- },
22578
22560
  // No Unused Imports
22579
22561
  {
22580
22562
  plugins: {
@@ -6,7 +6,6 @@ import { mergeProcessors } from 'eslint-merge-processors';
6
6
  import jsonc from 'eslint-plugin-jsonc';
7
7
  import nodeEslint from 'eslint-plugin-n';
8
8
  import noOnlyTests from 'eslint-plugin-no-only-tests';
9
- import noSecrets from 'eslint-plugin-no-secrets';
10
9
  import packageJson from 'eslint-plugin-package-json';
11
10
  import perfectionist from 'eslint-plugin-perfectionist';
12
11
  import { configs } from 'eslint-plugin-pnpm';
@@ -22472,12 +22471,6 @@ const config = [
22472
22471
  files: ["**/*.json", "**/*.jsonc", "**/*.json5"],
22473
22472
  languageOptions: {
22474
22473
  parser: jsoncParser
22475
- },
22476
- plugins: {
22477
- "no-secrets": noSecrets
22478
- },
22479
- rules: {
22480
- "no-secrets/no-secrets": ["error", { additionalDelimiters: ["(?=[A-Z][a-z])"], tolerance: 4.1 }]
22481
22474
  }
22482
22475
  },
22483
22476
  // Stylistic
@@ -22529,16 +22522,6 @@ const config = [
22529
22522
  "no-only-tests/no-only-tests": "error"
22530
22523
  }
22531
22524
  },
22532
- // No Secrets
22533
- {
22534
- files: ["**/*.{js,mjs,ts,mts,vue}"],
22535
- plugins: {
22536
- "no-secrets": noSecrets
22537
- },
22538
- rules: {
22539
- "no-secrets/no-secrets": ["error", { additionalDelimiters: ["(?=[A-Z][a-z])"], tolerance: 4.1 }]
22540
- }
22541
- },
22542
22525
  // No Unused Imports
22543
22526
  {
22544
22527
  plugins: {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@saasmakers/eslint",
3
- "version": "0.1.36",
3
+ "version": "0.1.37",
4
4
  "private": false,
5
5
  "description": "Shared ESLint config and rules for SaaS Makers projects",
6
6
  "repository": {
@@ -40,7 +40,6 @@
40
40
  "eslint-plugin-jsonc": "2.21.0",
41
41
  "eslint-plugin-n": "17.23.1",
42
42
  "eslint-plugin-no-only-tests": "3.3.0",
43
- "eslint-plugin-no-secrets": "2.2.1",
44
43
  "eslint-plugin-package-json": "0.87.0",
45
44
  "eslint-plugin-perfectionist": "5.1.0",
46
45
  "eslint-plugin-pnpm": "1.4.3",