justintime50-styles 0.3.0 → 0.4.0

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/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # CHANGELOG
2
2
 
3
+ ## v0.4.0 (2023-04-27)
4
+
5
+ - Enforces string convention for `import-notation` in `Stylelint`
6
+
3
7
  ## v0.3.0 (2023-04-05)
4
8
 
5
9
  - Enforces a line-length of 120 characters for PHP projects
package/composer.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "justintime50/styles",
3
3
  "description": "A collection of style guides and best practices used for my projects and teams.",
4
- "version": "0.3.0",
4
+ "version": "0.4.0",
5
5
  "license": "MIT",
6
6
  "type": "library",
7
7
  "homepage": "https://github.com/Justintime50/styles",
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "justintime50-styles",
3
3
  "description": "A collection of style guides and best practices used for my projects and teams.",
4
- "version": "0.3.0",
4
+ "version": "0.4.0",
5
5
  "author": "Justintime50",
6
6
  "license": "MIT",
7
7
  "homepage": "https://github.com/justintime50/styles",
@@ -1,3 +1,6 @@
1
1
  {
2
- "extends": "stylelint-config-standard"
2
+ "extends": "stylelint-config-standard",
3
+ "rules": {
4
+ "import-notation": "string"
5
+ }
3
6
  }