@alexlit/config-eslint 143.0.1 → 143.1.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/config-eslint",
3
- "version": "143.0.1",
3
+ "version": "143.1.0",
4
4
  "private": false,
5
5
  "description": "Sharable ESLint configuration",
6
6
  "keywords": [
@@ -48,11 +48,11 @@
48
48
  "@vitest/eslint-plugin": "^1.6.20",
49
49
  "eslint": "^10.5.0",
50
50
  "eslint-config-prettier": "^10.1.8",
51
- "eslint-plugin-jsdoc": "^63.0.5",
51
+ "eslint-plugin-jsdoc": "^63.0.6",
52
52
  "eslint-plugin-perfectionist": "^5.9.1",
53
53
  "eslint-plugin-prettier": "^5.5.6",
54
54
  "eslint-plugin-regexp": "^3.1.0",
55
- "eslint-plugin-sonarjs": "^4.0.3",
55
+ "eslint-plugin-sonarjs": "^4.1.0",
56
56
  "eslint-plugin-tailwindcss": "^3.18.3",
57
57
  "eslint-plugin-unicorn": "^67.0.0",
58
58
  "eslint-plugin-vue": "^10.9.2",
package/plugins/sonar.js CHANGED
@@ -9,10 +9,6 @@ export const sonar = defineConfig([
9
9
  {
10
10
  files: FILES,
11
11
  plugins: { sonar: plugin },
12
- rules: {
13
- 'sonarjs/no-commented-code': 'warn',
14
- 'sonarjs/no-vue-bypass-sanitization': 'warn',
15
- 'sonarjs/todo-tag': 'warn',
16
- },
12
+ rules: { 'sonarjs/no-commented-code': 'warn', 'sonarjs/todo-tag': 'warn' },
17
13
  },
18
14
  ]);
@@ -23,7 +23,7 @@ export const unicorn = defineConfig([
23
23
  'unicorn/no-unused-properties': 'off', // don't respect local keys
24
24
  'unicorn/prefer-dom-node-html-methods': 'off', // Safari not supports setHTML()
25
25
  'unicorn/prefer-export-from': ['error', { checkUsedVariables: true }],
26
- 'unicorn/prefer-https': 'off', // SVG need HTTPS
26
+ 'unicorn/prefer-https': 'off', // SVG need HTTP
27
27
  'unicorn/prefer-import-meta-properties': 'warn',
28
28
  'unicorn/prefer-iterator-concat': 'off', // ES2026 only
29
29
  'unicorn/prefer-module': 'warn',