@alextheman/eslint-plugin 1.2.13 → 1.3.1
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 +3498 -3479
- package/dist/index.d.cts +6 -2
- package/dist/index.d.ts +6 -2
- package/dist/index.js +1552 -1535
- package/package.json +3 -3
package/dist/index.d.cts
CHANGED
|
@@ -1,10 +1,11 @@
|
|
|
1
1
|
import * as _typescript_eslint_utils_ts_eslint from '@typescript-eslint/utils/ts-eslint';
|
|
2
|
+
import { Linter } from 'eslint';
|
|
2
3
|
import { Config } from 'prettier';
|
|
3
4
|
|
|
4
5
|
declare const prettierRules: Config;
|
|
5
6
|
|
|
6
7
|
var name = "@alextheman/eslint-plugin";
|
|
7
|
-
var version = "1.
|
|
8
|
+
var version = "1.3.1";
|
|
8
9
|
|
|
9
10
|
interface AlexPlugin {
|
|
10
11
|
meta: {
|
|
@@ -12,7 +13,10 @@ interface AlexPlugin {
|
|
|
12
13
|
version: typeof version;
|
|
13
14
|
namespace: "alextheman";
|
|
14
15
|
};
|
|
15
|
-
configs:
|
|
16
|
+
configs: {
|
|
17
|
+
alexTypeScriptBase: Linter.Config[];
|
|
18
|
+
alexTypeScriptReactBase: Linter.Config[];
|
|
19
|
+
};
|
|
16
20
|
rules: Record<string, any>;
|
|
17
21
|
}
|
|
18
22
|
|
package/dist/index.d.ts
CHANGED
|
@@ -1,10 +1,11 @@
|
|
|
1
1
|
import * as _typescript_eslint_utils_ts_eslint from '@typescript-eslint/utils/ts-eslint';
|
|
2
|
+
import { Linter } from 'eslint';
|
|
2
3
|
import { Config } from 'prettier';
|
|
3
4
|
|
|
4
5
|
declare const prettierRules: Config;
|
|
5
6
|
|
|
6
7
|
var name = "@alextheman/eslint-plugin";
|
|
7
|
-
var version = "1.
|
|
8
|
+
var version = "1.3.1";
|
|
8
9
|
|
|
9
10
|
interface AlexPlugin {
|
|
10
11
|
meta: {
|
|
@@ -12,7 +13,10 @@ interface AlexPlugin {
|
|
|
12
13
|
version: typeof version;
|
|
13
14
|
namespace: "alextheman";
|
|
14
15
|
};
|
|
15
|
-
configs:
|
|
16
|
+
configs: {
|
|
17
|
+
alexTypeScriptBase: Linter.Config[];
|
|
18
|
+
alexTypeScriptReactBase: Linter.Config[];
|
|
19
|
+
};
|
|
16
20
|
rules: Record<string, any>;
|
|
17
21
|
}
|
|
18
22
|
|