@deot/dev-eslint 2.8.3 → 2.8.4
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/dist/index.cjs +28 -2
- package/dist/index.js +9 -2
- package/package.json +1 -1
package/dist/index.cjs
CHANGED
|
@@ -11,6 +11,25 @@ const pluginMarkdown = require('eslint-plugin-markdown');
|
|
|
11
11
|
const pluginImport = require('eslint-plugin-import');
|
|
12
12
|
const pluginStylistic = require('@stylistic/eslint-plugin');
|
|
13
13
|
|
|
14
|
+
function _interopNamespaceDefault(e) {
|
|
15
|
+
const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } });
|
|
16
|
+
if (e) {
|
|
17
|
+
for (const k in e) {
|
|
18
|
+
if (k !== 'default') {
|
|
19
|
+
const d = Object.getOwnPropertyDescriptor(e, k);
|
|
20
|
+
Object.defineProperty(n, k, d.get ? d : {
|
|
21
|
+
enumerable: true,
|
|
22
|
+
get: () => e[k]
|
|
23
|
+
});
|
|
24
|
+
}
|
|
25
|
+
}
|
|
26
|
+
}
|
|
27
|
+
n.default = e;
|
|
28
|
+
return Object.freeze(n);
|
|
29
|
+
}
|
|
30
|
+
|
|
31
|
+
const parserTs__namespace = /*#__PURE__*/_interopNamespaceDefault(parserTs);
|
|
32
|
+
|
|
14
33
|
const pickOptions = async (key, options) => {
|
|
15
34
|
const configOptions = {
|
|
16
35
|
enable: typeof options?.[key] === "boolean" ? options[key] : true,
|
|
@@ -90,7 +109,7 @@ const typescript = async (options$) => {
|
|
|
90
109
|
{
|
|
91
110
|
files: ["*.ts", "*.tsx", "*.mts", "*.cts"].map((i) => "**/" + i),
|
|
92
111
|
languageOptions: {
|
|
93
|
-
parser:
|
|
112
|
+
parser: parserTs__namespace,
|
|
94
113
|
parserOptions: {
|
|
95
114
|
sourceType: "module"
|
|
96
115
|
}
|
|
@@ -121,7 +140,14 @@ const javascript = async (options$) => {
|
|
|
121
140
|
"no-undef": 1,
|
|
122
141
|
"no-debugger": 1,
|
|
123
142
|
"no-unused-vars": 1,
|
|
124
|
-
"no-useless-escape": 0
|
|
143
|
+
"no-useless-escape": 0,
|
|
144
|
+
"prefer-const": [
|
|
145
|
+
2,
|
|
146
|
+
{
|
|
147
|
+
destructuring: "all",
|
|
148
|
+
ignoreReadBeforeAssign: false
|
|
149
|
+
}
|
|
150
|
+
]
|
|
125
151
|
};
|
|
126
152
|
return [
|
|
127
153
|
{
|
package/dist/index.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import pluginTs from '@typescript-eslint/eslint-plugin';
|
|
2
|
-
import parserTs from '@typescript-eslint/parser';
|
|
2
|
+
import * as parserTs from '@typescript-eslint/parser';
|
|
3
3
|
import js from '@eslint/js';
|
|
4
4
|
import globals from 'globals';
|
|
5
5
|
import pluginJsdoc from 'eslint-plugin-jsdoc';
|
|
@@ -117,7 +117,14 @@ const javascript = async (options$) => {
|
|
|
117
117
|
"no-undef": 1,
|
|
118
118
|
"no-debugger": 1,
|
|
119
119
|
"no-unused-vars": 1,
|
|
120
|
-
"no-useless-escape": 0
|
|
120
|
+
"no-useless-escape": 0,
|
|
121
|
+
"prefer-const": [
|
|
122
|
+
2,
|
|
123
|
+
{
|
|
124
|
+
destructuring: "all",
|
|
125
|
+
ignoreReadBeforeAssign: false
|
|
126
|
+
}
|
|
127
|
+
]
|
|
121
128
|
};
|
|
122
129
|
return [
|
|
123
130
|
{
|