@shell-shock/eslint-plugin 0.0.82 → 0.0.84
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 +12 -0
- package/dist/package.cjs +1 -1
- package/dist/package.mjs +1 -1
- package/package.json +9 -39
package/README.md
CHANGED
|
@@ -82,6 +82,18 @@ yarn add -D @shell-shock/eslint-plugin
|
|
|
82
82
|
## Linting Rules
|
|
83
83
|
|
|
84
84
|
<!-- begin auto-generated rules list -->
|
|
85
|
+
|
|
86
|
+
💼 Configurations enabled in.\
|
|
87
|
+
⚠️ Configurations set to warn in.\
|
|
88
|
+
📋 Set in the `base` configuration.\
|
|
89
|
+
🌟 Set in the `recommended` configuration.
|
|
90
|
+
|
|
91
|
+
| Name | Description | 💼 | ⚠️ |
|
|
92
|
+
| :------------------------------------------------------------- | :--------------------------------------------------------------------------------------------------------------------------------------------------------- | :---- | :---- |
|
|
93
|
+
| [duplicate-command-path](docs/rules/duplicate-command-path.md) | Multiple command files found in the same directory. This can lead to unexpected behavior. Please ensure that there is only one command file per directory. | | 📋 🌟 |
|
|
94
|
+
| [invalid-command-export](docs/rules/invalid-command-export.md) | A command module must have a handler function as it's default export. | 📋 🌟 | |
|
|
95
|
+
| [invalid-handler-params](docs/rules/invalid-handler-params.md) | The command handler function must have a valid parameter types. | 📋 🌟 | |
|
|
96
|
+
|
|
85
97
|
<!-- end auto-generated rules list -->
|
|
86
98
|
|
|
87
99
|
<div align="right">[ <a href="#table-of-contents">Back to top ▲</a> ]</div>
|
package/dist/package.cjs
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
var e=`0.0.
|
|
1
|
+
var e=`0.0.83`;Object.defineProperty(exports,"version",{enumerable:!0,get:function(){return e}});
|
package/dist/package.mjs
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
var e=`0.0.
|
|
1
|
+
var e=`0.0.83`;export{e as version};
|
|
2
2
|
//# sourceMappingURL=package.mjs.map
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@shell-shock/eslint-plugin",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.84",
|
|
4
4
|
"private": false,
|
|
5
5
|
"description": "An ESLint Plugin with linting rules that ensure a Shell Shock project is following the best practices.",
|
|
6
6
|
"keywords": ["eslint", "eslint-plugin", "shell-shock", "storm-software"],
|
|
@@ -79,16 +79,16 @@
|
|
|
79
79
|
"dependencies": {
|
|
80
80
|
"@stryke/fs": "^0.33.85",
|
|
81
81
|
"@stryke/path": "^0.29.11",
|
|
82
|
-
"@typescript-eslint/utils": "^8.
|
|
82
|
+
"@typescript-eslint/utils": "^8.61.0",
|
|
83
83
|
"defu": "^6.1.7",
|
|
84
|
-
"@storm-software/testing-tools": "^1.119.
|
|
85
|
-
"powerlines": "^0.47.
|
|
84
|
+
"@storm-software/testing-tools": "^1.119.207",
|
|
85
|
+
"powerlines": "^0.47.134"
|
|
86
86
|
},
|
|
87
87
|
"devDependencies": {
|
|
88
88
|
"@eslint/compat": "^2.1.0",
|
|
89
89
|
"@eslint/config-inspector": "^1.5.0",
|
|
90
|
-
"@powerlines/plugin-tsdown": "^0.1.
|
|
91
|
-
"@storm-software/testing-tools": "^1.119.
|
|
90
|
+
"@powerlines/plugin-tsdown": "^0.1.535",
|
|
91
|
+
"@storm-software/testing-tools": "^1.119.207",
|
|
92
92
|
"@types/eslint": "^9.6.1",
|
|
93
93
|
"@types/eslint__js": "^9.14.0",
|
|
94
94
|
"@types/node": "^25.9.2",
|
|
@@ -99,40 +99,10 @@
|
|
|
99
99
|
"eslint-plugin-i18n-text": "^1.0.1",
|
|
100
100
|
"eslint-rule-documentation": "^1.0.23",
|
|
101
101
|
"eslint-typegen": "^2.3.1",
|
|
102
|
-
"powerlines": "^0.47.
|
|
102
|
+
"powerlines": "^0.47.134"
|
|
103
103
|
},
|
|
104
104
|
"peerDependencies": { "eslint": ">=9.39.3" },
|
|
105
105
|
"peerDependenciesMeta": { "eslint": { "optional": false } },
|
|
106
|
-
"publishConfig": {
|
|
107
|
-
|
|
108
|
-
"exports": {
|
|
109
|
-
".": { "require": "./dist/index.cjs", "import": "./dist/index.mjs" },
|
|
110
|
-
"./configs": {
|
|
111
|
-
"require": "./dist/configs/index.cjs",
|
|
112
|
-
"import": "./dist/configs/index.mjs"
|
|
113
|
-
},
|
|
114
|
-
"./configs/base": {
|
|
115
|
-
"require": "./dist/configs/base.cjs",
|
|
116
|
-
"import": "./dist/configs/base.mjs"
|
|
117
|
-
},
|
|
118
|
-
"./plugin": {
|
|
119
|
-
"require": "./dist/plugin.cjs",
|
|
120
|
-
"import": "./dist/plugin.mjs"
|
|
121
|
-
},
|
|
122
|
-
"./rules/duplicate-command-path": {
|
|
123
|
-
"require": "./dist/rules/duplicate-command-path.cjs",
|
|
124
|
-
"import": "./dist/rules/duplicate-command-path.mjs"
|
|
125
|
-
},
|
|
126
|
-
"./rules/invalid-command-export": {
|
|
127
|
-
"require": "./dist/rules/invalid-command-export.cjs",
|
|
128
|
-
"import": "./dist/rules/invalid-command-export.mjs"
|
|
129
|
-
},
|
|
130
|
-
"./rules/invalid-handler-params": {
|
|
131
|
-
"require": "./dist/rules/invalid-handler-params.cjs",
|
|
132
|
-
"import": "./dist/rules/invalid-handler-params.mjs"
|
|
133
|
-
},
|
|
134
|
-
"./package.json": "./package.json"
|
|
135
|
-
}
|
|
136
|
-
},
|
|
137
|
-
"gitHead": "8c9f000d243ed0b6ac67b2be112429ddeccd0617"
|
|
106
|
+
"publishConfig": { "access": "public" },
|
|
107
|
+
"gitHead": "7c26148e430cd5dca15bc74320969a4656683511"
|
|
138
108
|
}
|