eslint-plugin-crisp 1.4.6 → 1.4.7

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "eslint-plugin-crisp",
3
- "version": "1.4.6",
3
+ "version": "1.4.7",
4
4
  "description": "Custom ESLint Rules for Crisp",
5
5
  "author": "Crisp IM SAS",
6
6
  "main": "index.js",
@@ -131,7 +131,7 @@ export default {
131
131
  // Get comment for current group
132
132
  updateCurrentGroupComment(node);
133
133
 
134
- if (!currentGroupComment || !currentGroupComment.value.toUpperCase().includes(expectedComment.toUpperCase())) {
134
+ if (!currentGroupComment || !currentGroupComment.value.includes(expectedComment)) {
135
135
  context.report({
136
136
  node,
137
137
  message: `Import "${importPath}" should be in the "${expectedComment}" group.`,