Skip to content

Commit

Permalink
chore: Fix indentation in .prettierrc files
Browse files Browse the repository at this point in the history
  • Loading branch information
sapegin committed Nov 5, 2020
1 parent 4a16f00 commit 8b68d0b
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 17 deletions.
2 changes: 1 addition & 1 deletion .editorconfig
Expand Up @@ -8,6 +8,6 @@ charset = utf-8
trim_trailing_whitespace = true
insert_final_newline = true

[*.{json,yml,md,babelrc,eslintrc,remarkrc}]
[*.{json,yml,md,babelrc,eslintrc,remarkrc,prettierrc}]
indent_style = space
indent_size = 2
32 changes: 16 additions & 16 deletions .prettierrc
Expand Up @@ -5,20 +5,20 @@
"useTabs": true,
"proseWrap": "never",
"overrides": [
{
"files": "*.md",
"options": {
"printWidth": 70,
"useTabs": false,
"semi": false,
"trailingComma": "none"
}
},
{
"files": "*.{json,babelrc,eslintrc,remarkrc}",
"options": {
"useTabs": false
}
}
]
{
"files": "*.md",
"options": {
"printWidth": 70,
"useTabs": false,
"semi": false,
"trailingComma": "none"
}
},
{
"files": "*.{json,babelrc,eslintrc,remarkrc,prettierrc}",
"options": {
"useTabs": false
}
}
]
}

0 comments on commit 8b68d0b

Please sign in to comment.