@alexlit/lint-kit 114.2.0 → 114.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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@alexlit/lint-kit",
3
- "version": "114.2.0",
3
+ "version": "114.4.0",
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-commitlint",
3
- "version": "11.3.0",
3
+ "version": "11.4.0",
4
4
  "private": false,
5
5
  "description": "Commitlint config",
6
6
  "keywords": [
@@ -33,7 +33,7 @@
33
33
  "up": "../../scripts/up.sh"
34
34
  },
35
35
  "dependencies": {
36
- "@commitlint/cli": "^19.2.2",
36
+ "@commitlint/cli": "^19.3.0",
37
37
  "@commitlint/config-conventional": "^19.2.2",
38
38
  "conventional-changelog-cli": "^4.1.0"
39
39
  },
@@ -1,5 +1,4 @@
1
- // @ts-check
2
- /* eslint-disable sonarjs/no-duplicate-string, import/order */
1
+ /* eslint-disable sonarjs/no-duplicate-string, import/order, no-undef */
3
2
 
4
3
  const { defineConfig } = require('eslint-define-config');
5
4
  const { extendSpellChecker } = require('./utils/extend-spell-checker');
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@alexlit/config-eslint",
3
- "version": "81.1.0",
3
+ "version": "81.2.2",
4
4
  "private": false,
5
5
  "description": "Eslint config",
6
6
  "keywords": [
@@ -38,8 +38,8 @@
38
38
  "dependencies": {
39
39
  "@intlify/eslint-plugin-vue-i18n": "^2.0.0",
40
40
  "@tanstack/eslint-plugin-query": "^5.28.11",
41
- "@typescript-eslint/eslint-plugin": "^7.7.0",
42
- "@typescript-eslint/parser": "^7.7.0",
41
+ "@typescript-eslint/eslint-plugin": "^7.7.1",
42
+ "@typescript-eslint/parser": "^7.7.1",
43
43
  "eslint": "^8.57.0",
44
44
  "eslint-config-airbnb-base": "^15.0.0",
45
45
  "eslint-config-prettier": "^9.1.0",
@@ -62,7 +62,7 @@
62
62
  "eslint-plugin-no-constructor-bind": "^2.0.4",
63
63
  "eslint-plugin-no-explicit-type-exports": "^0.12.1",
64
64
  "eslint-plugin-no-loops": "^0.3.0",
65
- "eslint-plugin-no-secrets": "^0.8.9",
65
+ "eslint-plugin-no-secrets": "^0.9.1",
66
66
  "eslint-plugin-no-use-extend-native": "^0.5.0",
67
67
  "eslint-plugin-node": "^11.1.0",
68
68
  "eslint-plugin-prettier": "^5.1.3",
@@ -82,7 +82,7 @@
82
82
  "eslint-plugin-unused-imports": "^3.1.0",
83
83
  "eslint-plugin-vitest": "^0.4.1",
84
84
  "eslint-plugin-vue": "^9.25.0",
85
- "eslint-plugin-vuejs-accessibility": "^2.2.1",
85
+ "eslint-plugin-vuejs-accessibility": "^2.3.0",
86
86
  "eslint-plugin-wc": "^2.1.0",
87
87
  "eslint-plugin-write-good-comments": "^0.2.0",
88
88
  "typescript": "^5.4.5"
@@ -1,3 +1,4 @@
1
+ /* eslint-disable no-undef */
1
2
  module.exports = {
2
3
  extends: [
3
4
  'plugin:import/errors',
@@ -57,8 +58,12 @@ module.exports = {
57
58
  'newlines-between': 'always',
58
59
 
59
60
  pathGroups: [
60
- { group: 'internal', pattern: '{@,~}/core/**', position: 'after' },
61
- { group: 'internal', pattern: '{@,~}/modules/**', position: 'after' },
61
+ // Nuxt
62
+ { group: 'internal', pattern: '#**', position: 'after' },
63
+ // Structure
64
+ { group: 'internal', pattern: '{@,~}/core', position: 'after' },
65
+ { group: 'internal', pattern: '{@,~}/features', position: 'after' },
66
+ { group: 'internal', pattern: '{@,~}/modules', position: 'after' },
62
67
  // FSD
63
68
  {
64
69
  group: 'internal',
@@ -1,3 +1,4 @@
1
+ /* eslint-disable no-undef */
1
2
  module.exports = {
2
3
  extends: ['plugin:unicorn/recommended'],
3
4
 
@@ -44,6 +45,7 @@ module.exports = {
44
45
  'warn',
45
46
  {
46
47
  allowList: {
48
+ ImportMetaEnv: true,
47
49
  ProcessEnv: true,
48
50
  args: true,
49
51
  attrs: true,