stylelint-plugin-logical-css 0.13.0 → 0.13.2

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/README.md CHANGED
@@ -66,7 +66,7 @@ physical property or value is found, it will be flagged.
66
66
  #### Options
67
67
 
68
68
  > Note: As of v0.13.0, the original `disable-auto-fix` option has been removed.
69
- > PLease use Stylelint's `disableFix` option instead.
69
+ > Please use Stylelint's `disableFix` option instead.
70
70
 
71
71
  | Option | Description |
72
72
  | ------ | ------------------------------------------------------------- |
@@ -242,7 +242,7 @@ directions. Instead, this rule will enforce the logical equivalents, `vi` and
242
242
  #### Options
243
243
 
244
244
  > Note: As of v0.13.0, the original `disable-auto-fix` option has been removed.
245
- > PLease use Stylelint's `disableFix` option instead.
245
+ > Please use Stylelint's `disableFix` option instead.
246
246
 
247
247
  | Option | Description |
248
248
  | ------ | -------------------------------------------------------- |
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "stylelint-plugin-logical-css",
3
- "version": "0.13.0",
3
+ "version": "0.13.2",
4
4
  "description": "A Stylelint plugin to enforce the use of logical CSS properties, values and units.",
5
5
  "main": "src/index.js",
6
6
  "files": [
@@ -7,7 +7,6 @@ const { getValueUnit, isPhysicalUnit } = require('../../utils/isPhysicalUnit');
7
7
  const { physicalUnitsMap } = require('../../utils/physicalUnitsMap');
8
8
 
9
9
  const ruleFunction = (_, options, context) => {
10
- console.log({ options, context });
11
10
  return (root, result) => {
12
11
  const validOptions = stylelint.utils.validateOptions(result, ruleName);
13
12