Merge pull request #6013 from storybooks/tech/sync-lineLength

SYNC printWidth prettier config
This commit is contained in:
Norbert de Langen 2019-03-11 11:01:42 +01:00 committed by GitHub
commit 90c6062e70
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 3 deletions

View File

@ -72,7 +72,7 @@ The prettier configuration that will be used to format the story source in the a
Defaults:
```js
{
printWidth: 120,
printWidth: 100,
tabWidth: 2,
bracketSpacing: true,
trailingComma: 'es5',
@ -91,7 +91,7 @@ module.exports = function (baseConfig, env, defaultConfig) {
loader: require.resolve('@storybook/addon-storysource/loader'),
options: {
prettierConfig: {
printWidth: 80,
printWidth: 100,
singleQuote: false,
}
}

View File

@ -1,6 +1,6 @@
const defaultOptions = {
prettierConfig: {
printWidth: 120,
printWidth: 100,
tabWidth: 2,
bracketSpacing: true,
trailingComma: 'es5',