forked from microsoft/accessibility-insights-web
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathprettier.config.js
More file actions
29 lines (29 loc) · 935 Bytes
/
prettier.config.js
File metadata and controls
29 lines (29 loc) · 935 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
28
29
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.
module.exports = {
endOfLine: 'lf',
printWidth: 100,
singleQuote: true,
tabWidth: 4,
trailingComma: 'all',
overrides: [
{
files: [
'src/content/**/*',
'src/icons/**/*',
'src/tests/unit/tests/common/**/*',
'src/tests/unit/tests/debug-tools/**/*',
'src/tests/unit/tests/DetailsView/**/*',
'src/tests/unit/tests/electron/**/*',
'src/tests/unit/tests/injected/**/*',
'src/tests/unit/tests/issue-filing/**/*',
'src/tests/unit/tests/popup/**/*',
'src/tests/unit/tests/reports/**/*',
'src/tests/unit/tests/views/**/*',
],
options: {
printWidth: 140,
},
},
],
};