-
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
7dce80c
commit 66b66b2
Showing
3 changed files
with
13 additions
and
13 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,5 @@ | ||
import plugin from "@effect/eslint-plugin/plugin" | ||
import * as plugin from "@effect/eslint-plugin/plugin" | ||
import "@effect/eslint-plugin/configs/recommended" | ||
|
||
export * from "@effect/eslint-plugin/plugin" | ||
export default plugin |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +1,16 @@ | ||
import { dprint } from "@effect/eslint-plugin/rules/dprint" | ||
|
||
export const meta = { | ||
name: "@effect/eslint-plugin", | ||
} | ||
|
||
export const rules = { | ||
dprint, | ||
} | ||
|
||
// NOTE: unfortunately plugins needs a self-reference inside configs, | ||
// so in this file we only stub out known configs | ||
// but they actually get injected in their respective file | ||
|
||
export default { | ||
meta: { | ||
name: "@effect/eslint-plugin", | ||
}, | ||
rules: { | ||
dprint, | ||
}, | ||
configs: { | ||
recommended: [] as Array<any>, | ||
}, | ||
export const configs = { | ||
recommended: [] as Array<any>, | ||
} |