Skip to content

Commit 397531d

Browse files
committed
feature: eslint-plugin-putout: rm no-debugger, no-unused-vars
1 parent 1ac6e86 commit 397531d

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

packages/eslint-plugin-putout/lib/index.mjs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,6 @@ const putoutConfig = [{
1616
},
1717
rules: {
1818
...config.rules,
19-
'no-debugger': 'off',
20-
'no-unused-vars': 'off',
2119
'putout/array-element-newline': 'error',
2220
'putout/single-property-destructuring': 'error',
2321
'putout/multiple-properties-destructuring': 'error',

packages/eslint-plugin-putout/test/eslint.mjs

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -267,3 +267,7 @@ test('eslint-plugin-putout: no-extra-non-null-assertion', async ({comparePlaces}
267267
test('eslint-plugin-putout: no-namespace', async ({comparePlaces}) => {
268268
await comparePlaces('no-namespace', []);
269269
});
270+
271+
test('eslint-plugin-putout: no-debugger', async ({comparePlaces}) => {
272+
await comparePlaces('no-debugger', []);
273+
});

0 commit comments

Comments
 (0)