@alexlit/lint-kit 176.0.0 → 176.0.1

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": "@alexlit/lint-kit",
3
- "version": "176.0.0",
3
+ "version": "176.0.1",
4
4
  "private": false,
5
5
  "description": "Preset of configuration files and dependencies for linting web applications (designed for Vue.js with TypeScript)",
6
6
  "keywords": [
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@alexlit/config-eslint",
3
- "version": "133.0.0",
3
+ "version": "133.0.1",
4
4
  "private": false,
5
5
  "description": "Sharable ESLint configuration",
6
6
  "keywords": [
@@ -180,6 +180,12 @@ export const vue = defineConfig([
180
180
  'vue/valid-v-slot': ['error'],
181
181
  },
182
182
  },
183
+
184
+ {
185
+ files: ['**/*.ts', '**/*.js', '**/*.cjs', '**/*.mjs'],
186
+ rules: { 'vue/order-in-components': 'off' },
187
+ },
188
+
183
189
  {
184
190
  files: ['**/pages/**/*.vue', '**/layouts/**/*.vue'],
185
191
  rules: { 'vue/multi-word-component-names': 'off' },