Skip to content

Commit

Permalink
Restore ES Lint
Browse files Browse the repository at this point in the history
  • Loading branch information
rushi committed Nov 1, 2023
1 parent 49b541a commit 0a6d9ff
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
3 changes: 3 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,9 @@
"dev": "npm run storybook",
"storybook": "storybook dev -p 6006 --no-open",
"format": "prettier -l --write src",
"lint": "xola-lint src",
"lint:fix": "xola-lint src --ignore src/stories --fix=true",
"lint:report": "xola-lint --reporter=json src > eslint_report.json",
"test": "jest",
"build": "npm run prepare && vite build",
"build:storybook": "npm run prepare && storybook build"
Expand Down
3 changes: 1 addition & 2 deletions src/helpers/classnames.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
import { twMerge } from "tailwind-merge";
import clsx from "clsx";
import { ClassValue } from "clsx";
import clsx, { ClassValue } from "clsx";

export function cn(...inputs: ClassValue[]) {
return twMerge(clsx(inputs));
Expand Down

0 comments on commit 0a6d9ff

Please sign in to comment.