mirror of
https://github.com/lucide-icons/lucide.git
synced 2025-12-16 14:07:41 +01:00
17 lines
288 B
JavaScript
17 lines
288 B
JavaScript
|
|
/** @satisfies {import('prettier').Config} */
|
||
|
|
const config = {
|
||
|
|
singleQuote: true,
|
||
|
|
trailingComma: 'all',
|
||
|
|
printWidth: 100,
|
||
|
|
overrides: [
|
||
|
|
{
|
||
|
|
files: ['icons/*.json', 'categories/*.json'],
|
||
|
|
options: {
|
||
|
|
printWidth: 0,
|
||
|
|
},
|
||
|
|
},
|
||
|
|
],
|
||
|
|
};
|
||
|
|
|
||
|
|
export default config;
|