@agilebot/eslint-plugin 0.3.5 → 0.3.7

Sign up to get free protection for your applications and to get access to all the features.
package/LICENSE.tpl ADDED
@@ -0,0 +1,8 @@
1
+ /**
2
+ * @license %(name)s v%(version)s
3
+ *
4
+ * Copyright (c) Agilebot, Inc. and its affiliates.
5
+ *
6
+ * This source code is licensed under the MIT license found in the
7
+ * LICENSE file in the root directory of this source tree.
8
+ */
package/README.md CHANGED
@@ -1,11 +1,9 @@
1
1
  # @agilebot/eslint-plugin
2
2
 
3
+ Agilebot extended ESLint rules. For @agilebot/eslint-config.
4
+
3
5
  ### Usage
4
6
 
5
7
  ```bash
6
8
  npm install --save-dev eslint @agilebot/eslint-plugin
7
9
  ```
8
-
9
- ### Documentation
10
-
11
- See `docs` folder.
package/dist/index.d.ts CHANGED
@@ -1,10 +1,11 @@
1
- export default plugin;
1
+ import * as eslint from 'eslint';
2
+
2
3
  declare namespace plugin {
3
- let rules: import('eslint').Linter.RulesRecord;
4
+ let rules: eslint.Linter.RulesRecord;
4
5
  namespace configs {
5
6
  namespace recommended {
6
7
  export let plugins: string[];
7
- let rules_1: import('eslint').Linter.RulesRecord;
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 };