@leancodepl/prettier-config 9.6.4 → 9.6.6

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 +4 -4
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -16,18 +16,18 @@ yarn add --dev @leancodepl/prettier-config
16
16
 
17
17
  ```javascript
18
18
  // prettier.config.js
19
- module.exports = require('@leancodepl/prettier-config');
19
+ module.exports = require("@leancodepl/prettier-config")
20
20
  ```
21
21
 
22
22
  ### With Overrides
23
23
 
24
24
  ```javascript
25
25
  // prettier.config.js
26
- const baseConfig = require('@leancodepl/prettier-config');
26
+ const baseConfig = require("@leancodepl/prettier-config")
27
27
 
28
28
  module.exports = {
29
29
  ...baseConfig,
30
30
  printWidth: 100,
31
31
  singleQuote: true,
32
- };
33
- ```
32
+ }
33
+ ```
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@leancodepl/prettier-config",
3
- "version": "9.6.4",
3
+ "version": "9.6.6",
4
4
  "license": "Apache-2.0",
5
5
  "dependencies": {
6
6
  "prettier": ">=3.0.0"