Skip to content

Commit 736fd9a

Browse files
committed
feature: @putout/plugin-arguments: add
1 parent 829aa18 commit 736fd9a

File tree

103 files changed

+338
-328
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

103 files changed

+338
-328
lines changed

README.md

Lines changed: 1 addition & 2 deletions
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"match": {
33
"*.md": {
4-
"remove-useless-arguments": "off"
4+
"arguments": "off"
55
}
66
}
77
}
File renamed without changes.

packages/plugin-remove-useless-arguments/README.md renamed to packages/plugin-arguments/README.md

Lines changed: 16 additions & 41 deletions
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
import {safeAlign} from 'eslint-plugin-putout';
2+
3+
export default safeAlign;
Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
import * as removeUseless from './remove-useless/index.js';
2+
import * as removeUselessFromMethod from './remove-useless-from-method/index.js';
3+
import * as removeUnused from './remove-unused/index.js';
4+
import * as jsonParse from './json-parse/index.js';
5+
6+
export const rules = {
7+
'remove-useless': removeUseless,
8+
'remove-useless-form-method': removeUselessFromMethod,
9+
'remove-unused': removeUnused,
10+
'json-parse': jsonParse,
11+
};

0 commit comments

Comments
 (0)