-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: update prettier, run format (#129)
* chore: update prettier config * chore: run format
- Loading branch information
1 parent
4564bb5
commit a96d0fa
Showing
206 changed files
with
48,439 additions
and
48,309 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,6 @@ | ||
build | ||
public/static | ||
node_modules | ||
*.yml | ||
*node_modules* | ||
*.yml | ||
sanity-dauci/.sanity/* | ||
sanity-dauci/dist/* |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,24 @@ | ||
{ | ||
"useTabs": true, | ||
"tabWidth": 4, | ||
"semi": true, | ||
"singleQuote": false, | ||
"printWidth": 80 | ||
"tabWidth": 4, | ||
"useTabs": false, | ||
"printWidth": 80, | ||
"plugins": ["@ianvs/prettier-plugin-sort-imports"], | ||
"importOrder": [ | ||
"^(react/(.*)$)|^(react$)", | ||
"^(next/(.*)$)|^(next$)", | ||
"<THIRD_PARTY_MODULES>", | ||
"", | ||
"^types$", | ||
"^~/types/(.*)$", | ||
"^~/config/(.*)$", | ||
"^~/lib/(.*)$", | ||
"^~/hooks/(.*)$", | ||
"^~/components/ui/(.*)$", | ||
"^~/components/(.*)$", | ||
"^~/styles/(.*)$", | ||
"^~/app/(.*)$", | ||
"", | ||
"^[./]" | ||
], | ||
"importOrderParserPlugins": ["typescript", "jsx", "decorators-legacy"] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
{ | ||
"compilerOptions": { | ||
"jsx": "react", | ||
"baseUrl": "src" | ||
}, | ||
"include": ["src"] | ||
"compilerOptions": { | ||
"jsx": "react", | ||
"baseUrl": "src" | ||
}, | ||
"include": ["src"] | ||
} |
Oops, something went wrong.