2019-01-24 03:44:12 +03:00
|
|
|
// Copyright (c) Microsoft Corporation. All rights reserved.
|
|
|
|
// Licensed under the MIT License.
|
|
|
|
module.exports = {
|
|
|
|
endOfLine: 'lf',
|
2020-02-13 02:46:03 +03:00
|
|
|
printWidth: 100,
|
2019-01-24 03:44:12 +03:00
|
|
|
singleQuote: true,
|
|
|
|
tabWidth: 4,
|
|
|
|
trailingComma: 'all',
|
2020-03-23 23:53:45 +03:00
|
|
|
// We'd like to remove this arrowParens setting and use the new Prettier 2.0 default
|
|
|
|
// But since it has a lot of conflict potential, defering that until a quiet weekend
|
|
|
|
arrowParens: 'avoid',
|
2019-11-20 02:32:05 +03:00
|
|
|
overrides: [
|
|
|
|
{
|
2020-03-25 02:18:55 +03:00
|
|
|
files: ['src/content/**/*'],
|
2019-11-26 00:19:38 +03:00
|
|
|
options: {
|
2020-02-13 02:46:03 +03:00
|
|
|
printWidth: 140,
|
2019-11-26 00:19:38 +03:00
|
|
|
},
|
|
|
|
},
|
2019-11-20 02:32:05 +03:00
|
|
|
],
|
2019-01-24 03:44:12 +03:00
|
|
|
};
|