@so1ve/eslint-plugin 0.30.0 → 0.32.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 +1 -3
- package/dist/index.mjs +1 -3
- package/package.json +1 -1
package/dist/index.cjs
CHANGED
|
@@ -2,9 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
const utils = require('@typescript-eslint/utils');
|
|
4
4
|
|
|
5
|
-
const createEslintRule = utils.ESLintUtils.RuleCreator(
|
|
6
|
-
(ruleName) => ruleName
|
|
7
|
-
);
|
|
5
|
+
const createEslintRule = utils.ESLintUtils.RuleCreator((ruleName) => ruleName);
|
|
8
6
|
|
|
9
7
|
const RULE_NAME$1 = "generic-spacing";
|
|
10
8
|
const genericSpacing = createEslintRule({
|
package/dist/index.mjs
CHANGED
|
@@ -1,8 +1,6 @@
|
|
|
1
1
|
import { ESLintUtils } from '@typescript-eslint/utils';
|
|
2
2
|
|
|
3
|
-
const createEslintRule = ESLintUtils.RuleCreator(
|
|
4
|
-
(ruleName) => ruleName
|
|
5
|
-
);
|
|
3
|
+
const createEslintRule = ESLintUtils.RuleCreator((ruleName) => ruleName);
|
|
6
4
|
|
|
7
5
|
const RULE_NAME$1 = "generic-spacing";
|
|
8
6
|
const genericSpacing = createEslintRule({
|