@ofk/eslint-config 0.0.9 → 0.0.11

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.js CHANGED
@@ -965,7 +965,8 @@ var vitestStrict = mergeRules(import_eslint_plugin.default.configs.recommended,
965
965
  "vitest/prefer-comparison-matcher": "error",
966
966
  "vitest/prefer-each": "error",
967
967
  "vitest/prefer-equality-matcher": "error",
968
- "vitest/prefer-expect-assertions": "error",
968
+ "vitest/prefer-expect-assertions": "off",
969
+ // deprecated
969
970
  "vitest/prefer-expect-resolves": "error",
970
971
  "vitest/prefer-hooks-in-order": "error",
971
972
  "vitest/prefer-hooks-on-top": "error",
@@ -973,7 +974,8 @@ var vitestStrict = mergeRules(import_eslint_plugin.default.configs.recommended,
973
974
  "vitest/prefer-mock-promise-shorthand": "error",
974
975
  "vitest/prefer-snapshot-hint": "error",
975
976
  "vitest/prefer-spy-on": "error",
976
- "vitest/prefer-strict-boolean-matchers": "error",
977
+ "vitest/prefer-strict-boolean-matchers": "off",
978
+ // conflict with vitest/prefer-to-be-truthy
977
979
  "vitest/prefer-strict-equal": "error",
978
980
  "vitest/prefer-to-be": "error",
979
981
  "vitest/prefer-to-be-falsy": "error",
package/dist/index.mjs CHANGED
@@ -929,7 +929,8 @@ var vitestStrict = mergeRules(pluginVitest.configs.recommended, {
929
929
  "vitest/prefer-comparison-matcher": "error",
930
930
  "vitest/prefer-each": "error",
931
931
  "vitest/prefer-equality-matcher": "error",
932
- "vitest/prefer-expect-assertions": "error",
932
+ "vitest/prefer-expect-assertions": "off",
933
+ // deprecated
933
934
  "vitest/prefer-expect-resolves": "error",
934
935
  "vitest/prefer-hooks-in-order": "error",
935
936
  "vitest/prefer-hooks-on-top": "error",
@@ -937,7 +938,8 @@ var vitestStrict = mergeRules(pluginVitest.configs.recommended, {
937
938
  "vitest/prefer-mock-promise-shorthand": "error",
938
939
  "vitest/prefer-snapshot-hint": "error",
939
940
  "vitest/prefer-spy-on": "error",
940
- "vitest/prefer-strict-boolean-matchers": "error",
941
+ "vitest/prefer-strict-boolean-matchers": "off",
942
+ // conflict with vitest/prefer-to-be-truthy
941
943
  "vitest/prefer-strict-equal": "error",
942
944
  "vitest/prefer-to-be": "error",
943
945
  "vitest/prefer-to-be-falsy": "error",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ofk/eslint-config",
3
- "version": "0.0.9",
3
+ "version": "0.0.11",
4
4
  "description": "",
5
5
  "license": "MIT",
6
6
  "author": "ofk (https://github.com/ofk/)",