@agilebot/eslint-plugin 0.3.5 → 0.3.7
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/LICENSE.tpl +8 -0
- package/README.md +2 -4
- package/dist/index.d.ts +6 -3
- package/dist/index.js +842 -1001
- package/package.json +6 -5
package/LICENSE.tpl
ADDED
package/README.md
CHANGED
package/dist/index.d.ts
CHANGED
@@ -1,10 +1,11 @@
|
|
1
|
-
|
1
|
+
import * as eslint from 'eslint';
|
2
|
+
|
2
3
|
declare namespace plugin {
|
3
|
-
let rules:
|
4
|
+
let rules: eslint.Linter.RulesRecord;
|
4
5
|
namespace configs {
|
5
6
|
namespace recommended {
|
6
7
|
export let plugins: string[];
|
7
|
-
let rules_1:
|
8
|
+
let rules_1: eslint.Linter.RulesRecord;
|
8
9
|
export { rules_1 as rules };
|
9
10
|
export namespace settings {
|
10
11
|
namespace react {
|
@@ -14,3 +15,5 @@ declare namespace plugin {
|
|
14
15
|
}
|
15
16
|
}
|
16
17
|
}
|
18
|
+
|
19
|
+
export { plugin as default };
|