justintime50-styles 0.5.0 → 0.6.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,8 +1,12 @@
1
1
  # CHANGELOG
2
2
 
3
+ ## v0.6.0 (2024-05-31)
4
+
5
+ - Ignores `at-rule-no-unknown` in CSS linting.
6
+
3
7
  ## v0.5.0 (2023-08-07)
4
8
 
5
- Disables the `no-descending-specificity` rule of stylelint as I'm almost always using nested SASS which doesn't play nicely with this rule
9
+ - Disables the `no-descending-specificity` rule of stylelint as I'm almost always using nested SASS which doesn't play nicely with this rule
6
10
 
7
11
  ## v0.4.0 (2023-04-27)
8
12
 
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.5.0",
4
+ "version": "0.6.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.5.0",
4
+ "version": "0.6.0",
5
5
  "author": "Justintime50",
6
6
  "license": "MIT",
7
7
  "homepage": "https://github.com/justintime50/styles",
@@ -1,6 +1,7 @@
1
1
  {
2
2
  "extends": "stylelint-config-standard",
3
3
  "rules": {
4
+ "at-rule-no-unknown": null,
4
5
  "import-notation": "string",
5
6
  "no-descending-specificity": null
6
7
  }