Skip to content

Commit

Permalink
MDLY-14 Fixed lint
Browse files Browse the repository at this point in the history
  • Loading branch information
vladokuskov committed Apr 15, 2024
1 parent 4308268 commit 5333458
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion configs/style/colors.config.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
export const colors = {
'outline-neutral-100': 'var(--color-outline-100)',
}
};
2 changes: 1 addition & 1 deletion configs/style/daisy.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -33,4 +33,4 @@ export const daisyConfig = {
},
],
},
}
};
6 changes: 3 additions & 3 deletions configs/style/index.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { daisyConfig } from './daisy.config'
import { colors } from './colors.config'
import { daisyConfig } from './daisy.config';
import { colors } from './colors.config';

export { daisyConfig, colors }
export { daisyConfig, colors };
8 changes: 4 additions & 4 deletions tailwind.config.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { Config } from 'tailwindcss'
import { daisyConfig, colors } from './configs/style'
import { Config } from 'tailwindcss';
import { daisyConfig, colors } from './configs/style';

const config: Config = {
content: [
Expand All @@ -26,5 +26,5 @@ const config: Config = {

...daisyConfig,
plugins: [require('daisyui')],
}
export default config
};
export default config;

0 comments on commit 5333458

Please sign in to comment.