zirka 0.0.32 → 0.0.34

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.
@@ -514,7 +514,7 @@ var init_import = __esm({
514
514
  ]
515
515
  };
516
516
  importOverrides = {
517
- files: ["**/*.config.{js,ts}"],
517
+ files: ["**/*.config.{cjs,cts,js,mjs,mts,ts}"],
518
518
  rules: {
519
519
  "import/no-default-export": "off"
520
520
  }
@@ -686,17 +686,6 @@ var init_unicorn = __esm({
686
686
  unicorn: import_eslint_plugin_unicorn.default
687
687
  },
688
688
  rules: {
689
- /**
690
- * Require consistent filename case for all linted files.
691
- * 🚫 Not fixable - https://github.com/sindresorhus/eslint-plugin-unicorn/blob/main/docs/rules/filename-case.md
692
- * Source: Vercel Style Guide → https://github.com/vercel/style-guide
693
- */
694
- "unicorn/filename-case": [
695
- "error",
696
- {
697
- case: "kebabCase"
698
- }
699
- ],
700
689
  /**
701
690
  * Require using the `node:` protocol when importing Node.js built-in modules.
702
691
  * 🔧 Fixable - https://github.com/sindresorhus/eslint-plugin-unicorn/blob/main/docs/rules/prefer-node-protocol.md
@@ -1149,18 +1138,24 @@ var init_imports = __esm({
1149
1138
  // App Router
1150
1139
  "**/app/**/page.{js,jsx,ts,tsx}",
1151
1140
  "**/app/**/layout.{js,jsx,ts,tsx}",
1141
+ "**/app/**/template.{js,jsx,ts,tsx}",
1152
1142
  "**/app/**/loading.{js,jsx,ts,tsx}",
1153
1143
  "**/app/**/error.{js,jsx,ts,tsx}",
1154
1144
  "**/app/**/not-found.{js,jsx,ts,tsx}",
1155
1145
  "**/app/**/global-error.{js,jsx,ts,tsx}",
1156
1146
  "**/app/**/route.{js,ts}",
1147
+ "**/app/**/icon.{js,jsx,ts,tsx}",
1148
+ "**/app/**/apple-icon.{js,jsx,ts,tsx}",
1157
1149
  "**/src/app/**/page.{js,jsx,ts,tsx}",
1158
1150
  "**/src/app/**/layout.{js,jsx,ts,tsx}",
1151
+ "**/src/app/**/template.{js,jsx,ts,tsx}",
1159
1152
  "**/src/app/**/loading.{js,jsx,ts,tsx}",
1160
1153
  "**/src/app/**/error.{js,jsx,ts,tsx}",
1161
1154
  "**/src/app/**/not-found.{js,jsx,ts,tsx}",
1162
1155
  "**/src/app/**/global-error.{js,jsx,ts,tsx}",
1163
- "**/src/app/**/route.{js,ts}"
1156
+ "**/src/app/**/route.{js,ts}",
1157
+ "**/src/app/**/icon.{js,jsx,ts,tsx}",
1158
+ "**/src/app/**/apple-icon.{js,jsx,ts,tsx}"
1164
1159
  ];
1165
1160
  nextImportRules = {
1166
1161
  files: NEXT_JS_FILES,
@@ -498,7 +498,7 @@ var init_import = __esm({
498
498
  ]
499
499
  };
500
500
  importOverrides = {
501
- files: ["**/*.config.{js,ts}"],
501
+ files: ["**/*.config.{cjs,cts,js,mjs,mts,ts}"],
502
502
  rules: {
503
503
  "import/no-default-export": "off"
504
504
  }
@@ -670,17 +670,6 @@ var init_unicorn = __esm({
670
670
  unicorn: eslintPluginUnicorn
671
671
  },
672
672
  rules: {
673
- /**
674
- * Require consistent filename case for all linted files.
675
- * 🚫 Not fixable - https://github.com/sindresorhus/eslint-plugin-unicorn/blob/main/docs/rules/filename-case.md
676
- * Source: Vercel Style Guide → https://github.com/vercel/style-guide
677
- */
678
- "unicorn/filename-case": [
679
- "error",
680
- {
681
- case: "kebabCase"
682
- }
683
- ],
684
673
  /**
685
674
  * Require using the `node:` protocol when importing Node.js built-in modules.
686
675
  * 🔧 Fixable - https://github.com/sindresorhus/eslint-plugin-unicorn/blob/main/docs/rules/prefer-node-protocol.md
@@ -1133,18 +1122,24 @@ var init_imports = __esm({
1133
1122
  // App Router
1134
1123
  "**/app/**/page.{js,jsx,ts,tsx}",
1135
1124
  "**/app/**/layout.{js,jsx,ts,tsx}",
1125
+ "**/app/**/template.{js,jsx,ts,tsx}",
1136
1126
  "**/app/**/loading.{js,jsx,ts,tsx}",
1137
1127
  "**/app/**/error.{js,jsx,ts,tsx}",
1138
1128
  "**/app/**/not-found.{js,jsx,ts,tsx}",
1139
1129
  "**/app/**/global-error.{js,jsx,ts,tsx}",
1140
1130
  "**/app/**/route.{js,ts}",
1131
+ "**/app/**/icon.{js,jsx,ts,tsx}",
1132
+ "**/app/**/apple-icon.{js,jsx,ts,tsx}",
1141
1133
  "**/src/app/**/page.{js,jsx,ts,tsx}",
1142
1134
  "**/src/app/**/layout.{js,jsx,ts,tsx}",
1135
+ "**/src/app/**/template.{js,jsx,ts,tsx}",
1143
1136
  "**/src/app/**/loading.{js,jsx,ts,tsx}",
1144
1137
  "**/src/app/**/error.{js,jsx,ts,tsx}",
1145
1138
  "**/src/app/**/not-found.{js,jsx,ts,tsx}",
1146
1139
  "**/src/app/**/global-error.{js,jsx,ts,tsx}",
1147
- "**/src/app/**/route.{js,ts}"
1140
+ "**/src/app/**/route.{js,ts}",
1141
+ "**/src/app/**/icon.{js,jsx,ts,tsx}",
1142
+ "**/src/app/**/apple-icon.{js,jsx,ts,tsx}"
1148
1143
  ];
1149
1144
  nextImportRules = {
1150
1145
  files: NEXT_JS_FILES,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "zirka",
3
- "version": "0.0.32",
3
+ "version": "0.0.34",
4
4
  "description": "",
5
5
  "repository": {
6
6
  "type": "git",