@siberiacancode/eslint 2.13.0 → 2.14.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/README.md +18 -2
- package/package.json +8 -8
package/README.md
CHANGED
|
@@ -1,3 +1,19 @@
|
|
|
1
|
-
# 🔮 eslint
|
|
1
|
+
# 🔮 eslint
|
|
2
2
|
|
|
3
|
-
|
|
3
|
+
A shared ESLint configuration for consistent code linting across projects.
|
|
4
|
+
|
|
5
|
+
## Installation
|
|
6
|
+
|
|
7
|
+
```bash
|
|
8
|
+
npm install @siberiacancode/eslint
|
|
9
|
+
```
|
|
10
|
+
|
|
11
|
+
## Usage
|
|
12
|
+
|
|
13
|
+
```javascript
|
|
14
|
+
import { eslint } from '@siberiacancode/eslint';
|
|
15
|
+
|
|
16
|
+
export default eslint({
|
|
17
|
+
typescript: true
|
|
18
|
+
});
|
|
19
|
+
```
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@siberiacancode/eslint",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "2.
|
|
4
|
+
"version": "2.14.0",
|
|
5
5
|
"description": "eslint configs",
|
|
6
6
|
"author": {
|
|
7
7
|
"name": "SIBERIA CAN CODE 🧊",
|
|
@@ -38,15 +38,15 @@
|
|
|
38
38
|
"lint-inspector": "npx @eslint/config-inspector"
|
|
39
39
|
},
|
|
40
40
|
"dependencies": {
|
|
41
|
-
"@antfu/eslint-config": "
|
|
42
|
-
"@eslint-react/eslint-plugin": "2.
|
|
43
|
-
"@next/eslint-plugin-next": "
|
|
44
|
-
"@vue/compiler-sfc": "3.5.
|
|
45
|
-
"eslint": "9.
|
|
41
|
+
"@antfu/eslint-config": "6.7.1",
|
|
42
|
+
"@eslint-react/eslint-plugin": "2.3.13",
|
|
43
|
+
"@next/eslint-plugin-next": "16.0.10",
|
|
44
|
+
"@vue/compiler-sfc": "3.5.25",
|
|
45
|
+
"eslint": "9.39.2",
|
|
46
46
|
"eslint-plugin-jsx-a11y": "6.10.2",
|
|
47
47
|
"eslint-plugin-react": "7.37.5",
|
|
48
|
-
"eslint-plugin-react-hooks": "
|
|
49
|
-
"eslint-plugin-react-refresh": "0.4.
|
|
48
|
+
"eslint-plugin-react-hooks": "7.0.1",
|
|
49
|
+
"eslint-plugin-react-refresh": "0.4.26"
|
|
50
50
|
},
|
|
51
51
|
"devDependencies": {
|
|
52
52
|
"@siberiacancode/prettier": "*"
|