@azat-io/eslint-config 2.40.0 → 2.42.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.
@@ -376,6 +376,7 @@ function core(config) {
376
376
  "jsdoc/no-undefined-types": "error",
377
377
  "jsdoc/require-asterisk-prefix": "error",
378
378
  "jsdoc/require-description": "error",
379
+ "jsdoc/require-description-complete-sentence": "error",
379
380
  "jsdoc/require-hyphen-before-param-description": "error",
380
381
  "jsdoc/require-param": "error",
381
382
  "jsdoc/require-param-description": "error",
@@ -36,6 +36,17 @@ async function typescript(config) {
36
36
  typescript: typescriptPlugin
37
37
  },
38
38
  rules: {
39
+ "jsdoc/check-tag-names": [
40
+ "error",
41
+ {
42
+ typed: true
43
+ }
44
+ ],
45
+ "jsdoc/no-types": "error",
46
+ "jsdoc/no-undefined-types": "off",
47
+ "jsdoc/require-param-type": "off",
48
+ "jsdoc/require-property-type": "off",
49
+ "jsdoc/require-returns-type": "off",
39
50
  "typescript/array-type": [
40
51
  "error",
41
52
  {
package/dist/vue/index.js CHANGED
@@ -102,6 +102,8 @@ async function vue(config) {
102
102
  "vue/no-multiple-objects-in-class": "error",
103
103
  "vue/no-multiple-slot-args": "error",
104
104
  "vue/no-mutating-props": "error",
105
+ "vue/no-negated-condition": "error",
106
+ "vue/no-negated-v-if-condition": "error",
105
107
  "vue/no-parsing-error": "error",
106
108
  "vue/no-potential-component-option-typo": "error",
107
109
  "vue/no-ref-as-operand": "error",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@azat-io/eslint-config",
3
- "version": "2.40.0",
3
+ "version": "2.42.0",
4
4
  "description": "ESLint shareable config",
5
5
  "keywords": [
6
6
  "eslint",
@@ -35,10 +35,10 @@
35
35
  "eslint-plugin-de-morgan": "^1.3.0",
36
36
  "eslint-plugin-depend": "^1.2.0",
37
37
  "eslint-plugin-import-x": "^4.16.1",
38
- "eslint-plugin-jsdoc": "^51.4.1",
38
+ "eslint-plugin-jsdoc": "^52.0.2",
39
39
  "eslint-plugin-jsx-a11y": "^6.10.2",
40
- "eslint-plugin-n": "^17.21.0",
41
- "eslint-plugin-package-json": "^0.45.1",
40
+ "eslint-plugin-n": "^17.21.3",
41
+ "eslint-plugin-package-json": "^0.48.0",
42
42
  "eslint-plugin-perfectionist": "^4.15.0",
43
43
  "eslint-plugin-prefer-let": "^4.0.0",
44
44
  "eslint-plugin-promise": "^7.2.1",
@@ -55,7 +55,7 @@
55
55
  "eslint-plugin-sonarjs": "^3.0.4",
56
56
  "eslint-plugin-svelte": "^3.11.0",
57
57
  "eslint-plugin-unicorn": "^60.0.0",
58
- "eslint-plugin-vue": "^10.3.0",
58
+ "eslint-plugin-vue": "^10.4.0",
59
59
  "globals": "^16.3.0",
60
60
  "jsonc-eslint-parser": "^2.4.0",
61
61
  "svelte-eslint-parser": "^1.3.0",
package/readme.md CHANGED
@@ -154,6 +154,7 @@ This config uses the following plugins:
154
154
  ## See also
155
155
 
156
156
  - [`@azat-io/stylelint-config`](https://github.com/azat-io/stylelint-config)
157
+ - [`@azat-io/typescript-config`](https://github.com/azat-io/typescript-config)
157
158
 
158
159
  ## License
159
160