eslint-plugin-hex-under 1.7.2 → 1.7.3

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.
Files changed (2) hide show
  1. package/README.md +1 -1
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -4,7 +4,7 @@ Sometimes it's really hard for humans to read hexadecimal numbers and know the e
4
4
 
5
5
  ## hex-under
6
6
 
7
- This ESLint plugin proves, if you use hexadecimal numbers in your code, that its value is less than or equal a specified value (default: 255). If you use a hexadecimal number greater than this specified value, it will be transformed to its decimal value.
7
+ This ESLint plugin proves, if you use hexadecimal (or octal or binary) numbers in your code, that its value is less than or equal a specified value (default: `255` for hexadecimal, `15` for binary and `511` for octal). If you use a hexadecimal number greater than this specified value, it will be transformed to its decimal value.
8
8
 
9
9
  ### Example
10
10
 
package/package.json CHANGED
@@ -40,5 +40,5 @@
40
40
  "test:watch": "vitest"
41
41
  },
42
42
  "type": "module",
43
- "version": "1.7.2"
43
+ "version": "1.7.3"
44
44
  }