-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(eslint-config): add ESLint configuration package with various pl…
…ugins and custom rules (#10) - Set up esbuild and tsup for building TypeScript and emitting .d.ts files - Added core configuration files for ESLint with custom rules for Prettier, Sort Keys, Unicorn, and TypeScript support - Introduced optional React and TypeScript support based on package detection - Added utility functions for combining configs and renaming rules
- Loading branch information
Showing
98 changed files
with
5,224 additions
and
952 deletions.
There are no files selected for viewing
448 changes: 224 additions & 224 deletions
448
.yarn/releases/yarn-4.4.0.cjs → .yarn/releases/yarn-4.5.0.cjs
Large diffs are not rendered by default.
Oops, something went wrong.
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
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 |
---|---|---|
@@ -0,0 +1,3 @@ | ||
import norns from "@norns-ui/eslint-config-norns"; | ||
|
||
export default norns(); |
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
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,6 +1,6 @@ | ||
export {Avatar} from "./Avatar"; | ||
export type {AvatarProps} from "./Avatar"; | ||
export {AvatarFallback} from "./AvatarFallback"; | ||
export {Avatar} from "./Avatar"; | ||
export type {AvatarFallbackProps} from "./AvatarFallback"; | ||
export {AvatarImage} from "./AvatarImage"; | ||
export {AvatarFallback} from "./AvatarFallback"; | ||
export type {AvatarImageProps} from "./AvatarImage"; | ||
export {AvatarImage} from "./AvatarImage"; |
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 |
---|---|---|
@@ -0,0 +1,3 @@ | ||
import norns from "@norns-ui/eslint-config-norns"; | ||
|
||
export default norns(); |
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
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 |
---|---|---|
@@ -0,0 +1,3 @@ | ||
import norns from "@norns-ui/eslint-config-norns"; | ||
|
||
export default norns(); |
Oops, something went wrong.