Refactor ESLint configuration and update code formatting: Standardize quotes in eslint.config.mjs, next.config.js, and various TypeScript files for consistency. Add Prettier as a dependency and include formatting scripts in package.json. Clean up unnecessary whitespace in multiple files to enhance code readability.

This commit is contained in:
Julien Froidefond
2025-12-10 11:30:00 +01:00
parent 66237458ec
commit d11059dac2
52 changed files with 9075 additions and 6140 deletions

View File

@@ -9,21 +9,20 @@ const config: Config = {
theme: {
extend: {
colors: {
'pixel-purple': '#0a0515',
'pixel-dark': '#000000',
'pixel-red': '#8b0000',
'pixel-gold': '#daa520',
'pixel-brown': '#3d2817',
'pixel-dark-purple': '#1a0d2e',
"pixel-purple": "#0a0515",
"pixel-dark": "#000000",
"pixel-red": "#8b0000",
"pixel-gold": "#daa520",
"pixel-brown": "#3d2817",
"pixel-dark-purple": "#1a0d2e",
},
fontFamily: {
'pixel': ['Courier New', 'monospace'],
'gaming': ['var(--font-orbitron)', 'sans-serif'],
'gaming-subtitle': ['var(--font-rajdhani)', 'sans-serif'],
pixel: ["Courier New", "monospace"],
gaming: ["var(--font-orbitron)", "sans-serif"],
"gaming-subtitle": ["var(--font-rajdhani)", "sans-serif"],
},
},
},
plugins: [],
};
export default config;