@alextheman/eslint-plugin 1.1.3 → 1.2.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/dist/index.cjs +3797 -11
- package/dist/index.d.cts +16 -12
- package/dist/index.d.ts +16 -12
- package/dist/index.js +3821 -7
- package/package.json +6 -2
package/dist/index.d.cts
CHANGED
|
@@ -1,16 +1,20 @@
|
|
|
1
1
|
import * as _typescript_eslint_utils_ts_eslint from '@typescript-eslint/utils/ts-eslint';
|
|
2
2
|
|
|
3
|
-
declare const
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
3
|
+
declare const plugin: {
|
|
4
|
+
meta: {
|
|
5
|
+
name: string;
|
|
6
|
+
version: string;
|
|
7
|
+
namespace: string;
|
|
8
|
+
};
|
|
9
|
+
configs: {
|
|
10
|
+
alexTypeScriptBase: never[];
|
|
11
|
+
};
|
|
12
|
+
rules: {
|
|
13
|
+
"no-namespace-imports": _typescript_eslint_utils_ts_eslint.RuleModule<"message", [{
|
|
14
|
+
allow: string[];
|
|
15
|
+
}], unknown, _typescript_eslint_utils_ts_eslint.RuleListener>;
|
|
16
|
+
"no-relative-imports": _typescript_eslint_utils_ts_eslint.RuleModule<"message" | "stupidPath", [], unknown, _typescript_eslint_utils_ts_eslint.RuleListener>;
|
|
17
|
+
};
|
|
8
18
|
};
|
|
9
19
|
|
|
10
|
-
|
|
11
|
-
name: string;
|
|
12
|
-
version: string;
|
|
13
|
-
namespace: string;
|
|
14
|
-
};
|
|
15
|
-
|
|
16
|
-
export { meta, _default as rules };
|
|
20
|
+
export { plugin as default };
|
package/dist/index.d.ts
CHANGED
|
@@ -1,16 +1,20 @@
|
|
|
1
1
|
import * as _typescript_eslint_utils_ts_eslint from '@typescript-eslint/utils/ts-eslint';
|
|
2
2
|
|
|
3
|
-
declare const
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
3
|
+
declare const plugin: {
|
|
4
|
+
meta: {
|
|
5
|
+
name: string;
|
|
6
|
+
version: string;
|
|
7
|
+
namespace: string;
|
|
8
|
+
};
|
|
9
|
+
configs: {
|
|
10
|
+
alexTypeScriptBase: never[];
|
|
11
|
+
};
|
|
12
|
+
rules: {
|
|
13
|
+
"no-namespace-imports": _typescript_eslint_utils_ts_eslint.RuleModule<"message", [{
|
|
14
|
+
allow: string[];
|
|
15
|
+
}], unknown, _typescript_eslint_utils_ts_eslint.RuleListener>;
|
|
16
|
+
"no-relative-imports": _typescript_eslint_utils_ts_eslint.RuleModule<"message" | "stupidPath", [], unknown, _typescript_eslint_utils_ts_eslint.RuleListener>;
|
|
17
|
+
};
|
|
8
18
|
};
|
|
9
19
|
|
|
10
|
-
|
|
11
|
-
name: string;
|
|
12
|
-
version: string;
|
|
13
|
-
namespace: string;
|
|
14
|
-
};
|
|
15
|
-
|
|
16
|
-
export { meta, _default as rules };
|
|
20
|
+
export { plugin as default };
|