@yasainet/eslint 0.0.81 → 0.0.82

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@yasainet/eslint",
3
- "version": "0.0.81",
3
+ "version": "0.0.82",
4
4
  "description": "ESLint",
5
5
  "type": "module",
6
6
  "exports": {
@@ -40,9 +40,9 @@ export const tailwindcssConfigs = [
40
40
  {
41
41
  restrict: [
42
42
  {
43
- pattern: "^(?!mx-auto$)m[trblxy]?-(?!auto$)[^-\\s]+$",
43
+ pattern: "^-?m[tby]?-(?!auto$)[^-\\s]+$",
44
44
  message:
45
- "margin を避け、padding/gap で間隔を制御する (例外: mx-auto, -mt-*)",
45
+ "block 方向の margin (m-*, mt-*, mb-*, my-*) を避け、padding/gap で間隔を制御する (margin collapse 回避)。横方向 (mx-*, ml-*, mr-*) は許可",
46
46
  },
47
47
  {
48
48
  pattern: "^space-[xy]-[^-\\s]+$",