@evaneos/front-config 5.3.0 → 5.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/README.md CHANGED
@@ -124,3 +124,9 @@ Contributing to this repo should be simple.
124
124
  If you want to add a rule, plugin or anything, make a simple PR that does it, get it reviewed, merge it and then a release PR will automatically appear few minutes after.
125
125
  Make sure you follow standard commit.
126
126
  Merge it and it will automatically build and publish.
127
+
128
+ ## Supply chain protection
129
+
130
+ This repo pins npm installs to packages published before a fixed date via the `before` directive in `.npmrc`, as a mitigation against npm supply chain attacks (ref INC-227).
131
+
132
+ **If you need to upgrade dependencies**, update the `before` date in `.npmrc` to a value at most today minus 7 days. This 7-day delay leaves time for the community and automated scanners to detect and unpublish compromised packages before they reach our install.
package/eslint/index.js CHANGED
@@ -3113,8 +3113,28 @@ var override_default = [
3113
3113
  pattern: "@/**",
3114
3114
  group: "parent",
3115
3115
  position: "before"
3116
+ },
3117
+ {
3118
+ pattern: "./*.{css,scss,sass,less}",
3119
+ group: "object"
3120
+ },
3121
+ {
3122
+ pattern: "**/*.{css,scss,sass,less}",
3123
+ group: "object"
3116
3124
  }
3117
- ]
3125
+ ],
3126
+ groups: [
3127
+ "builtin",
3128
+ "external",
3129
+ "internal",
3130
+ "unknown",
3131
+ "parent",
3132
+ "sibling",
3133
+ "index",
3134
+ "object",
3135
+ "type"
3136
+ ],
3137
+ warnOnUnassignedImports: true
3118
3138
  }
3119
3139
  ],
3120
3140
  "padding-line-between-statements": [
package/eslint/index.mjs CHANGED
@@ -3102,8 +3102,28 @@ var override_default = [
3102
3102
  pattern: "@/**",
3103
3103
  group: "parent",
3104
3104
  position: "before"
3105
+ },
3106
+ {
3107
+ pattern: "./*.{css,scss,sass,less}",
3108
+ group: "object"
3109
+ },
3110
+ {
3111
+ pattern: "**/*.{css,scss,sass,less}",
3112
+ group: "object"
3105
3113
  }
3106
- ]
3114
+ ],
3115
+ groups: [
3116
+ "builtin",
3117
+ "external",
3118
+ "internal",
3119
+ "unknown",
3120
+ "parent",
3121
+ "sibling",
3122
+ "index",
3123
+ "object",
3124
+ "type"
3125
+ ],
3126
+ warnOnUnassignedImports: true
3107
3127
  }
3108
3128
  ],
3109
3129
  "padding-line-between-statements": [
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@evaneos/front-config",
3
- "version": "5.3.0",
3
+ "version": "5.4.0",
4
4
  "engines": {
5
5
  "node": ">=v18",
6
6
  "npm": ">=9"