@lbenie/linting 1.1.1 → 1.1.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/package.json +3 -7
package/README.md
CHANGED
|
@@ -20,7 +20,7 @@ Then create a `.eslintrc.js` file at the root of your project and add the follow
|
|
|
20
20
|
|
|
21
21
|
```js
|
|
22
22
|
module.exports = {
|
|
23
|
-
extends: ['@lbenie/linting/eslint'],
|
|
23
|
+
extends: [require.resolve('@lbenie/linting/eslint')],
|
|
24
24
|
};
|
|
25
25
|
```
|
|
26
26
|
|
|
@@ -28,7 +28,7 @@ Then create a `.stylelintrc.js` file at the root of your project and add the fol
|
|
|
28
28
|
|
|
29
29
|
```js
|
|
30
30
|
module.exports = {
|
|
31
|
-
extends: ['@lbenie/linting/stylelint'],
|
|
31
|
+
extends: [require.resolve('@lbenie/linting/stylelint')],
|
|
32
32
|
};
|
|
33
33
|
```
|
|
34
34
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@lbenie/linting",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.3",
|
|
4
4
|
"description": "my opiniated rules",
|
|
5
5
|
"repository": {
|
|
6
6
|
"url": "https://github.com/lbenie/linting"
|
|
@@ -18,10 +18,8 @@
|
|
|
18
18
|
],
|
|
19
19
|
"main": "./eslint/.eslintrc.js",
|
|
20
20
|
"exports": {
|
|
21
|
-
"
|
|
22
|
-
|
|
23
|
-
"stylelint": "./stylelint/.stylelint.js"
|
|
24
|
-
}
|
|
21
|
+
"./eslint": "./eslint/.eslintrc.js",
|
|
22
|
+
"./stylelint": "./stylelint/.stylelint.js"
|
|
25
23
|
},
|
|
26
24
|
"types": "dist/types/index.d.ts",
|
|
27
25
|
"scripts": {
|
|
@@ -47,8 +45,6 @@
|
|
|
47
45
|
"concurrently": "8.2.1",
|
|
48
46
|
"conventional-changelog-conventionalcommits": "6.1.0",
|
|
49
47
|
"eslint": "8.47.0",
|
|
50
|
-
"eslint-config-prettier": "9.0.0",
|
|
51
|
-
"eslint-config-stylelint": "20.0.0",
|
|
52
48
|
"eslint-plugin-functional": "6.0.0",
|
|
53
49
|
"eslint-plugin-prettier": "5.0.0",
|
|
54
50
|
"postcss": "8.4.28",
|