mirror of
https://github.com/movie-web/extension.git
synced 2025-09-13 11:23:24 +00:00
21 lines
411 B
JavaScript
21 lines
411 B
JavaScript
/**
|
|
* @type {import('prettier').Options}
|
|
*/
|
|
export default {
|
|
printWidth: 120,
|
|
trailingComma: 'all',
|
|
singleQuote: true,
|
|
importOrder: [
|
|
'<BUILTIN_MODULES>', // Node.js built-in modules
|
|
'<THIRD_PARTY_MODULES>', // Imports not matched by other special words or groups.
|
|
'', // Empty line
|
|
'^@plasmo/(.*)$',
|
|
'',
|
|
'^@plasmohq/(.*)$',
|
|
'',
|
|
'^~(.*)$',
|
|
'',
|
|
'^[./]',
|
|
],
|
|
};
|