@agilebot/eslint-plugin 0.2.1 → 0.2.3
Sign up to get free protection for your applications and to get access to all the features.
- package/dist/index.d.ts +30 -0
- package/{lib/rules/react/better-exhaustive-deps.js → dist/index.js} +1063 -407
- package/package.json +8 -6
- package/lib/index.js +0 -43
- package/lib/rules/import/enforce-icon-alias.js +0 -42
- package/lib/rules/import/monorepo.js +0 -49
- package/lib/rules/intl/id-missing.js +0 -111
- package/lib/rules/intl/id-prefix.js +0 -103
- package/lib/rules/intl/id-unused.js +0 -123
- package/lib/rules/intl/no-default.js +0 -63
- package/lib/rules/others/no-unnecessary-template-literals.js +0 -38
- package/lib/rules/react/hook-use-ref.js +0 -35
- package/lib/rules/react/no-inline-styles.js +0 -87
- package/lib/rules/react/prefer-named-property-access.js +0 -105
- package/lib/rules/tss/class-naming.js +0 -43
- package/lib/rules/tss/no-color-value.js +0 -58
- package/lib/rules/tss/unused-classes.js +0 -108
- package/lib/util/intl.js +0 -127
- package/lib/util/settings.js +0 -14
- package/lib/util/translations.js +0 -66
- package/lib/util/tss.js +0 -109
package/dist/index.d.ts
ADDED
@@ -0,0 +1,30 @@
|
|
1
|
+
declare namespace _default {
|
2
|
+
export { rules };
|
3
|
+
export namespace configs {
|
4
|
+
namespace recommended {
|
5
|
+
export let plugins: string[];
|
6
|
+
let rules_1: {
|
7
|
+
'@agilebot/react/prefer-named-property-access': string;
|
8
|
+
'@agilebot/react/hook-use-ref': string;
|
9
|
+
'@agilebot/react/no-inline-styles': string;
|
10
|
+
'@agilebot/tss/unused-classes': string;
|
11
|
+
'@agilebot/tss/no-color-value': string;
|
12
|
+
'@agilebot/tss/class-naming': string;
|
13
|
+
'@agilebot/import/enforce-icon-alias': string;
|
14
|
+
'@agilebot/import/monorepo': string;
|
15
|
+
'@agilebot/stylistic/no-unnecessary-template-literals': string;
|
16
|
+
};
|
17
|
+
export { rules_1 as rules };
|
18
|
+
export namespace settings {
|
19
|
+
namespace react {
|
20
|
+
let version: string;
|
21
|
+
}
|
22
|
+
}
|
23
|
+
}
|
24
|
+
}
|
25
|
+
}
|
26
|
+
export default _default;
|
27
|
+
/**
|
28
|
+
* @type {import('eslint').Linter.RulesRecord}
|
29
|
+
*/
|
30
|
+
declare const rules: import('eslint').Linter.RulesRecord;
|