DevClad-Inc / devclad

Consider using arrow functions for callbacks JS-0241
Anti-pattern
Minor
a year ago2 years old
Unexpected function expression.
146  plugins: [
147    "@tailwindcss/forms",
148    "@tailwindcss/aspect-ratio",
149    plugin(function ({ addBase, theme }) {150      addBase({151        body: {152          color: theme("colors.white"),153          backgroundColor: theme("colors.black"),154        },155      });156    }),157    plugin(({ addBase, theme }) => {
158      addBase({
159        ".scrollbar": {