eslint-config-arklint 1.7.1 → 1.8.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.
@@ -9,7 +9,7 @@ module.exports = {
9
9
  "jsdoc/require-returns": "off",
10
10
  "jsdoc/require-jsdoc": "off",
11
11
  "jsdoc/check-param-names": "warn",
12
- "jsdoc/check-indentation": "warn",
12
+ "jsdoc/check-indentation": ["warn", { excludeTags: ["import", "example"] }],
13
13
  "jsdoc/no-bad-blocks": "warn",
14
14
  "jsdoc/tag-lines": ["warn", "never"],
15
15
  "jsdoc/no-defaults": "off",
package/index.js CHANGED
@@ -97,10 +97,7 @@ module.exports = {
97
97
  allowTaggedTemplates: true
98
98
  }],
99
99
  "no-unused-labels": "warn",
100
- "no-unused-vars": ["warn", {
101
- args: "none",
102
- ignoreRestSiblings: true
103
- }],
100
+ "no-unused-vars": "warn",
104
101
  "no-use-before-define": ["warn", {
105
102
  functions: false,
106
103
  classes: false,
@@ -110,11 +107,7 @@ module.exports = {
110
107
  "no-useless-computed-key": "warn",
111
108
  "no-useless-concat": "warn",
112
109
  "no-useless-constructor": "warn",
113
- "no-useless-rename": ["warn", {
114
- ignoreDestructuring: false,
115
- ignoreImport: false,
116
- ignoreExport: false
117
- }],
110
+ "no-useless-rename": "warn",
118
111
  "no-var": "warn",
119
112
  "no-whitespace-before-property": "warn",
120
113
  "no-with": "warn",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "eslint-config-arklint",
3
- "version": "1.7.1",
3
+ "version": "1.8.0",
4
4
  "author": "Arkellys",
5
5
  "license": "MIT",
6
6
  "main": "index.js",
@@ -16,9 +16,9 @@
16
16
  "@rushstack/eslint-patch": "^1.10.3",
17
17
  "confusing-browser-globals": "^1.0.11",
18
18
  "eslint-plugin-import": "^2.29.1",
19
- "eslint-plugin-jsdoc": "^48.2.7",
20
- "eslint-plugin-jsx-a11y": "^6.8.0",
21
- "eslint-plugin-react": "^7.34.2",
19
+ "eslint-plugin-jsdoc": "^48.5.2",
20
+ "eslint-plugin-jsx-a11y": "^6.9.0",
21
+ "eslint-plugin-react": "^7.34.3",
22
22
  "eslint-plugin-react-hooks": "^4.6.2",
23
23
  "eslint-plugin-sort-imports-es6-autofix": "^0.6.0"
24
24
  },