eslint-config-arklint 1.0.1 → 1.0.3
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/README.md +2 -2
- package/extensions/react.js +0 -3
- package/package.json +6 -6
package/README.md
CHANGED
|
@@ -8,7 +8,7 @@ My personal ESLint configuration. Most of it is based on [eslint-config-react-ap
|
|
|
8
8
|
```shell
|
|
9
9
|
yarn add eslint-config-arklint -D
|
|
10
10
|
```
|
|
11
|
-
ESLint and all the plugins used in the config are dependencies, so no need to install them. I'm aware that ESLint is supposed to be in the `peerDependencies`, but since I'm maintaining my own
|
|
11
|
+
ESLint and all the plugins used in the config are dependencies, so no need to install them. I'm aware that ESLint is supposed to be in the `peerDependencies`, but since I'm maintaining my own packages, I'd rather have everything in one place for when I update the versions.
|
|
12
12
|
|
|
13
13
|
## Usage
|
|
14
14
|
|
|
@@ -35,4 +35,4 @@ module.exports = {
|
|
|
35
35
|
// Rule overrides
|
|
36
36
|
}
|
|
37
37
|
}
|
|
38
|
-
```
|
|
38
|
+
```
|
package/extensions/react.js
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "eslint-config-arklint",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.3",
|
|
4
4
|
"author": "Arkellys",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"main": "index.js",
|
|
@@ -10,13 +10,13 @@
|
|
|
10
10
|
},
|
|
11
11
|
"homepage": "https://github.com/Arkellys/eslint-config-arklint#readme",
|
|
12
12
|
"dependencies": {
|
|
13
|
-
"@rushstack/eslint-patch": "^1.
|
|
13
|
+
"@rushstack/eslint-patch": "^1.5.1",
|
|
14
14
|
"confusing-browser-globals": "^1.0.11",
|
|
15
|
-
"eslint": "^8.
|
|
16
|
-
"eslint-plugin-import": "^2.28.
|
|
17
|
-
"eslint-plugin-jsdoc": "^46.
|
|
15
|
+
"eslint": "^8.52.0",
|
|
16
|
+
"eslint-plugin-import": "^2.28.1",
|
|
17
|
+
"eslint-plugin-jsdoc": "^46.8.2",
|
|
18
18
|
"eslint-plugin-jsx-a11y": "^6.7.1",
|
|
19
|
-
"eslint-plugin-react": "^7.33.
|
|
19
|
+
"eslint-plugin-react": "^7.33.2",
|
|
20
20
|
"eslint-plugin-react-hooks": "^4.6.0",
|
|
21
21
|
"eslint-plugin-sort-imports-es6-autofix": "^0.6.0"
|
|
22
22
|
},
|