Skip to content

Commit de88de5

Browse files
committed
disable perfectionist plugin
1 parent 187d797 commit de88de5

File tree

2 files changed

+7
-14
lines changed

2 files changed

+7
-14
lines changed

eslint.config.js

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -22,11 +22,5 @@
2222
*/
2323

2424
import noel from '@augu/eslint-config';
25-
import { fileURLToPath } from 'url';
2625

27-
export default (typeof noel === 'function' ? noel : noel.default)({
28-
perfectionist: true,
29-
typescript: {
30-
tsconfig: fileURLToPath(new URL('tsconfig.json', import.meta.url))
31-
}
32-
});
26+
export default (typeof noel === 'function' ? noel : noel.default)({ perfectionist: false });

src/index.ts

Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,6 @@
2121
* SOFTWARE.
2222
*/
2323

24-
export * from './constants';
25-
2624
export {
2725
EventBus,
2826
type EventEmitterLike,
@@ -32,11 +30,6 @@ export {
3230
isEventEmitterLike
3331
} from './EventBus';
3432

35-
export * from './functions';
36-
37-
export { Lazy, lazy } from './Lazy';
38-
export { Stopwatch } from './Stopwatch';
39-
4033
export type {
4134
ConstructorReturnType,
4235
Ctor,
@@ -49,3 +42,9 @@ export type {
4942
ObjectKeysWithSeperator,
5043
ReaddirOptions
5144
} from './types';
45+
46+
export { Lazy, lazy } from './Lazy';
47+
export { Stopwatch } from './Stopwatch';
48+
49+
export * from './functions';
50+
export * from './constants';

0 commit comments

Comments
 (0)