-
Notifications
You must be signed in to change notification settings - Fork 28
Expand file tree
/
Copy pathprettier.config.js
More file actions
56 lines (54 loc) · 1.28 KB
/
prettier.config.js
File metadata and controls
56 lines (54 loc) · 1.28 KB
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
// prettier.config.js, .prettierrc.js, prettier.config.cjs, or .prettierrc.cjs
/**
* @see https://prettier.io/docs/configuration
* @type {import("prettier").Config}
*/
const config = {
semi: true,
trailingComma: 'all',
singleQuote: true,
printWidth: 100,
tabWidth: 4,
bracketSpacing: true,
arrowParens: 'always',
plugins: [
'prettier-plugin-tailwindcss',
'prettier-plugin-packagejson',
'prettier-plugin-solidity',
],
overrides: [
{
files: ['*.yaml', '*.yml'],
options: {
bracketSpacing: true,
printWidth: 120,
tabWidth: 2,
singleQuote: true,
useTabs: false,
},
},
{
files: '*.sol',
options: {
bracketSpacing: true,
printWidth: 120,
tabWidth: 4,
useTabs: false,
singleQuote: false,
},
},
{
files: 'package.json',
options: {
tabWidth: 4,
},
},
{
files: '*.jsonc',
options: {
trailingComma: 'none',
},
},
],
};
module.exports = config;