@alexlit/lint-kit 147.0.0 → 148.0.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/package.json +1 -1
- package/packages/config-eslint/node_modules/.bin/eslint +5 -1
- package/packages/config-eslint/node_modules/.bin/eslint-config-prettier +5 -1
- package/packages/config-eslint/node_modules/.bin/tsc +5 -1
- package/packages/config-eslint/node_modules/.bin/tsserver +5 -1
- package/packages/config-eslint/package.json +3 -3
- package/packages/config-eslint/plugins/vue.js +1 -0
- package/packages/config-prettier/node_modules/.bin/prettier +5 -1
- package/packages/config-prettier/package.json +3 -3
package/package.json
CHANGED
|
@@ -2,7 +2,11 @@
|
|
|
2
2
|
basedir=$(dirname "$(echo "$0" | sed -e 's,\\,/,g')")
|
|
3
3
|
|
|
4
4
|
case `uname` in
|
|
5
|
-
*CYGWIN*)
|
|
5
|
+
*CYGWIN*|*MINGW*|*MSYS*)
|
|
6
|
+
if command -v cygpath > /dev/null 2>&1; then
|
|
7
|
+
basedir=`cygpath -w "$basedir"`
|
|
8
|
+
fi
|
|
9
|
+
;;
|
|
6
10
|
esac
|
|
7
11
|
|
|
8
12
|
if [ -z "$NODE_PATH" ]; then
|
|
@@ -2,7 +2,11 @@
|
|
|
2
2
|
basedir=$(dirname "$(echo "$0" | sed -e 's,\\,/,g')")
|
|
3
3
|
|
|
4
4
|
case `uname` in
|
|
5
|
-
*CYGWIN*)
|
|
5
|
+
*CYGWIN*|*MINGW*|*MSYS*)
|
|
6
|
+
if command -v cygpath > /dev/null 2>&1; then
|
|
7
|
+
basedir=`cygpath -w "$basedir"`
|
|
8
|
+
fi
|
|
9
|
+
;;
|
|
6
10
|
esac
|
|
7
11
|
|
|
8
12
|
if [ -z "$NODE_PATH" ]; then
|
|
@@ -2,7 +2,11 @@
|
|
|
2
2
|
basedir=$(dirname "$(echo "$0" | sed -e 's,\\,/,g')")
|
|
3
3
|
|
|
4
4
|
case `uname` in
|
|
5
|
-
*CYGWIN*)
|
|
5
|
+
*CYGWIN*|*MINGW*|*MSYS*)
|
|
6
|
+
if command -v cygpath > /dev/null 2>&1; then
|
|
7
|
+
basedir=`cygpath -w "$basedir"`
|
|
8
|
+
fi
|
|
9
|
+
;;
|
|
6
10
|
esac
|
|
7
11
|
|
|
8
12
|
if [ -z "$NODE_PATH" ]; then
|
|
@@ -2,7 +2,11 @@
|
|
|
2
2
|
basedir=$(dirname "$(echo "$0" | sed -e 's,\\,/,g')")
|
|
3
3
|
|
|
4
4
|
case `uname` in
|
|
5
|
-
*CYGWIN*)
|
|
5
|
+
*CYGWIN*|*MINGW*|*MSYS*)
|
|
6
|
+
if command -v cygpath > /dev/null 2>&1; then
|
|
7
|
+
basedir=`cygpath -w "$basedir"`
|
|
8
|
+
fi
|
|
9
|
+
;;
|
|
6
10
|
esac
|
|
7
11
|
|
|
8
12
|
if [ -z "$NODE_PATH" ]; then
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@alexlit/config-eslint",
|
|
3
|
-
"version": "109.0
|
|
3
|
+
"version": "109.1.0",
|
|
4
4
|
"private": false,
|
|
5
5
|
"description": "Sharable ESLint configuration",
|
|
6
6
|
"keywords": [
|
|
@@ -55,12 +55,12 @@
|
|
|
55
55
|
"eslint-plugin-tailwindcss": "^3.18.0",
|
|
56
56
|
"eslint-plugin-unicorn": "^59.0.0",
|
|
57
57
|
"eslint-plugin-vitest": "^0.5.4",
|
|
58
|
-
"eslint-plugin-vue": "^10.
|
|
58
|
+
"eslint-plugin-vue": "^10.1.0",
|
|
59
59
|
"eslint-plugin-vuejs-accessibility": "^2.4.1",
|
|
60
60
|
"globals": "^16.0.0",
|
|
61
61
|
"jsonc-eslint-parser": "^2.4.0",
|
|
62
62
|
"typescript": "^5.8.3",
|
|
63
|
-
"typescript-eslint": "^8.31.
|
|
63
|
+
"typescript-eslint": "^8.31.1",
|
|
64
64
|
"yaml-eslint-parser": "^1.3.0"
|
|
65
65
|
},
|
|
66
66
|
"packageManager": "pnpm@9.x",
|
|
@@ -50,6 +50,7 @@ export const vue = [
|
|
|
50
50
|
},
|
|
51
51
|
],
|
|
52
52
|
'vue/define-props-declaration': ['error'],
|
|
53
|
+
'vue/define-props-destructuring': ['error', { destructure: 'always' }],
|
|
53
54
|
'vue/dot-notation': ['error'],
|
|
54
55
|
'vue/enforce-style-attribute': ['error', { allow: ['module'] }],
|
|
55
56
|
'vue/eqeqeq': ['error'],
|
|
@@ -2,7 +2,11 @@
|
|
|
2
2
|
basedir=$(dirname "$(echo "$0" | sed -e 's,\\,/,g')")
|
|
3
3
|
|
|
4
4
|
case `uname` in
|
|
5
|
-
*CYGWIN*)
|
|
5
|
+
*CYGWIN*|*MINGW*|*MSYS*)
|
|
6
|
+
if command -v cygpath > /dev/null 2>&1; then
|
|
7
|
+
basedir=`cygpath -w "$basedir"`
|
|
8
|
+
fi
|
|
9
|
+
;;
|
|
6
10
|
esac
|
|
7
11
|
|
|
8
12
|
if [ -z "$NODE_PATH" ]; then
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@alexlit/config-prettier",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "21.0.0",
|
|
4
4
|
"private": false,
|
|
5
5
|
"description": "prettier config",
|
|
6
6
|
"keywords": [
|
|
@@ -36,7 +36,7 @@
|
|
|
36
36
|
},
|
|
37
37
|
"dependencies": {
|
|
38
38
|
"@prettier/plugin-php": "^0.22.4",
|
|
39
|
-
"@prettier/plugin-pug": "^3.
|
|
39
|
+
"@prettier/plugin-pug": "^3.4.0",
|
|
40
40
|
"@prettier/plugin-ruby": "^4.0.4",
|
|
41
41
|
"@prettier/plugin-xml": "^3.4.1",
|
|
42
42
|
"prettier": "^3.5.3",
|
|
@@ -44,7 +44,7 @@
|
|
|
44
44
|
"prettier-plugin-jsdoc": "^1.3.2",
|
|
45
45
|
"prettier-plugin-packagejson": "^2.5.10",
|
|
46
46
|
"prettier-plugin-sh": "^0.17.2",
|
|
47
|
-
"prettier-plugin-solidity": "^
|
|
47
|
+
"prettier-plugin-solidity": "^2.0.0",
|
|
48
48
|
"prettier-plugin-sort-json": "^4.1.1",
|
|
49
49
|
"prettier-plugin-sql": "^0.19.0",
|
|
50
50
|
"prettier-plugin-tailwindcss": "^0.6.11",
|