Skip to content

Commit

Permalink
fix: husky setting
Browse files Browse the repository at this point in the history
  • Loading branch information
rlarudgh committed Apr 3, 2024
1 parent f0a68a7 commit d0e2d1a
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 11 deletions.
8 changes: 4 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
"start": "next start",
"lint": "next lint",
"prepare": "husky install",
"eslint": "eslint ."
"eslint": "eslint . --ext .tsx"
},
"dependencies": {
"axios": "^1.6.8",
Expand Down Expand Up @@ -43,9 +43,9 @@
"typescript": "*"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"prettier --write",
"eslint --fix"
"./src/*.{js,jsx,ts,tsx}": [
"eslint --fix",
"prettier --write"
]
},
"packageManager": "[email protected]"
Expand Down
14 changes: 7 additions & 7 deletions tailwind.config.ts
Original file line number Diff line number Diff line change
@@ -1,20 +1,20 @@
import type { Config } from "tailwindcss";
import type { Config } from 'tailwindcss';

const config: Config = {
content: [
"./src/pages/**/*.{js,ts,jsx,tsx,mdx}",
"./src/components/**/*.{js,ts,jsx,tsx,mdx}",
"./src/app/**/*.{js,ts,jsx,tsx,mdx}",
'./src/pages/**/*.{js,ts,jsx,tsx,mdx}',
'./src/components/**/*.{js,ts,jsx,tsx,mdx}',
'./src/app/**/*.{js,ts,jsx,tsx,mdx}',
],
theme: {
extend: {
backgroundImage: {
"gradient-radial": "radial-gradient(var(--tw-gradient-stops))",
"gradient-conic":
"conic-gradient(from 180deg at 50% 50%, var(--tw-gradient-stops))",
'gradient-radial': 'radial-gradient(var(--tw-gradient-stops))',
'gradient-conic': 'conic-gradient(from 180deg at 50% 50%, var(--tw-gradient-stops))',
},
},
},
plugins: [],
};

export default config;

0 comments on commit d0e2d1a

Please sign in to comment.