@alextheman/eslint-plugin 1.8.0 → 1.8.1

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/index.cjs CHANGED
@@ -3706,7 +3706,7 @@ module.exports = __toCommonJS(index_exports);
3706
3706
 
3707
3707
  // package.json
3708
3708
  var name = "@alextheman/eslint-plugin";
3709
- var version = "1.8.0";
3709
+ var version = "1.8.1";
3710
3710
 
3711
3711
  // src/configs/alexPluginBase.ts
3712
3712
  function createAlexPluginBaseConfig(plugin2) {
@@ -4054,7 +4054,7 @@ var rules_default = {
4054
4054
  // src/index.ts
4055
4055
  if (process.env.ESLINT_MODE) {
4056
4056
  console.warn(
4057
- "ESLINT_MODE is now deprecated. Please use eslint --fix --quiet when running the fixer instead."
4057
+ "ESLINT_MODE is now deprecated. Please use eslint --fix --suppress-all when running the fixer instead."
4058
4058
  );
4059
4059
  }
4060
4060
  var plugin = {
package/dist/index.d.cts CHANGED
@@ -2,7 +2,7 @@ import { Linter } from 'eslint';
2
2
  import { Config } from 'prettier';
3
3
 
4
4
  var name = "@alextheman/eslint-plugin";
5
- var version = "1.8.0";
5
+ var version = "1.8.1";
6
6
 
7
7
  declare const prettierRules: Config;
8
8
 
package/dist/index.d.ts CHANGED
@@ -2,7 +2,7 @@ import { Linter } from 'eslint';
2
2
  import { Config } from 'prettier';
3
3
 
4
4
  var name = "@alextheman/eslint-plugin";
5
- var version = "1.8.0";
5
+ var version = "1.8.1";
6
6
 
7
7
  declare const prettierRules: Config;
8
8
 
package/dist/index.js CHANGED
@@ -3692,7 +3692,7 @@ var require_globals2 = __commonJS({
3692
3692
 
3693
3693
  // package.json
3694
3694
  var name = "@alextheman/eslint-plugin";
3695
- var version = "1.8.0";
3695
+ var version = "1.8.1";
3696
3696
 
3697
3697
  // src/configs/alexPluginBase.ts
3698
3698
  function createAlexPluginBaseConfig(plugin2) {
@@ -4040,7 +4040,7 @@ var rules_default = {
4040
4040
  // src/index.ts
4041
4041
  if (process.env.ESLINT_MODE) {
4042
4042
  console.warn(
4043
- "ESLINT_MODE is now deprecated. Please use eslint --fix --quiet when running the fixer instead."
4043
+ "ESLINT_MODE is now deprecated. Please use eslint --fix --suppress-all when running the fixer instead."
4044
4044
  );
4045
4045
  }
4046
4046
  var plugin = {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@alextheman/eslint-plugin",
3
- "version": "1.8.0",
3
+ "version": "1.8.1",
4
4
  "description": "",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -10,7 +10,7 @@
10
10
  "scripts": {
11
11
  "test": "vitest run",
12
12
  "test-watch": "vitest",
13
- "format": "npm run build && prettier --write --parser typescript \"src/**/*.ts\" \"tests/**/*.ts\" && eslint --fix --quiet \"src/**/*.ts\" \"tests/**/*.ts\"",
13
+ "format": "npm run build && prettier --write --parser typescript \"src/**/*.ts\" \"tests/**/*.ts\" && eslint --fix --suppress-all \"src/**/*.ts\" \"tests/**/*.ts\" && rm -f eslint-suppressions.json",
14
14
  "lint": "npm run build && eslint \"src/**/*.ts\" \"tests/**/*.ts\" && prettier --check --parser typescript \"src/**/*.ts\" \"tests/**/*.ts\"",
15
15
  "update-dependencies": "npx npm-check-updates -u && npm install",
16
16
  "prepare": "husky",