@dvukovic/style-guide 0.3.6 → 0.3.8

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
@@ -24,6 +24,13 @@ add the following scripts
24
24
  }
25
25
  ```
26
26
 
27
+ add the following to `.gitignore`
28
+
29
+ ```
30
+ .eslintcache
31
+ .stylelintcache
32
+ ```
33
+
27
34
  ### ESLint
28
35
 
29
36
  Create a `.eslintrc.js` in root with the following:
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dvukovic/style-guide",
3
- "version": "0.3.6",
3
+ "version": "0.3.8",
4
4
  "description": "My own style guide",
5
5
  "repository": {
6
6
  "type": "git",
@@ -75,3 +75,6 @@ typeorm
75
75
  domagoj
76
76
  vukovic
77
77
  cspellrc
78
+ zipkip
79
+ envalid
80
+ openzipkin
@@ -58,8 +58,6 @@ const stylelint = {
58
58
  "no-invalid-position-at-import-rule": true,
59
59
  "no-irregular-whitespace": true,
60
60
  "no-unknown-animations": true,
61
- "no-unknown-custom-media": true,
62
- "no-unknown-custom-properties": true,
63
61
  "number-max-precision": 3,
64
62
  "property-no-unknown": true,
65
63
  "property-no-vendor-prefix": true,
@@ -81,7 +79,7 @@ const stylelint = {
81
79
  "selector-type-no-unknown": true,
82
80
  "shorthand-property-no-redundant-values": true,
83
81
  "string-no-newline": true,
84
- "unit-allowed-list": ["px", "rem", "%"],
82
+ "unit-allowed-list": ["px", "rem", "%", "fr", "vw", "vh"],
85
83
  "unit-no-unknown": true,
86
84
  "value-keyword-case": "lower",
87
85
  "value-no-vendor-prefix": true,