We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent abae061 commit ded3667Copy full SHA for ded3667
.pre-commit-config.yaml
@@ -10,6 +10,9 @@ repos:
10
rev: v4.0.0-alpha.4
11
hooks:
12
- id: prettier
13
+ additional_dependencies:
14
+ - prettier@3.1.1
15
+ - prettier-plugin-organize-imports
16
- repo: local
17
18
- id: black-with-tabs
.prettierrc
@@ -1,11 +1,13 @@
1
{
2
+ "$schema": "http://json.schemastore.org/prettierrc",
3
"endOfLine": "lf",
4
"semi": true,
5
"singleQuote": true,
6
"tabWidth": 2,
7
"useTabs": false,
8
"trailingComma": "es5",
9
"arrowParens": "avoid",
+ "plugins": ["prettier-plugin-organize-imports"],
"overrides": [
"files": "*.md",
0 commit comments