-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathprettier.config.js
More file actions
27 lines (26 loc) · 870 Bytes
/
prettier.config.js
File metadata and controls
27 lines (26 loc) · 870 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
/*
* Copyright © 2016-2026 by IntegrIT S.A. dba Hackolade. All rights reserved.
*
* The copyright to the computer software herein is the property of IntegrIT S.A.
* The software may be used and/or copied only with the written permission of
* IntegrIT S.A. or in accordance with the terms and conditions stipulated in
* the agreement/contract under which the software has been supplied.
*/
module.exports = {
plugins: ['@ianvs/prettier-plugin-sort-imports'],
printWidth: 120,
singleQuote: true,
trailingComma: 'all',
useTabs: true,
semi: true,
arrowParens: 'avoid',
bracketSpacing: true,
bracketSameLine: false,
tabWidth: 4,
endOfLine: 'lf',
quoteProps: 'preserve',
jsxSingleQuote: false,
importOrder: ['', '<BUILTIN_MODULES>', '', '<THIRD_PARTY_MODULES>', '', '^[.]'],
importOrderCaseSensitive: false,
importOrderTypeScriptVersion: '5.0.0',
};