Skip to content

Commit fe2e094

Browse files
authored
Run prettier on all files tracked by Git (#1322)
* Run prettier on all files tracked by Git * Refactor prettier setup --------- Co-authored-by: Craig Palermo <email@craigp.me>
1 parent e62b357 commit fe2e094

File tree

16 files changed

+223
-212
lines changed

16 files changed

+223
-212
lines changed

.prettierignore

Lines changed: 23 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,7 @@ build/Release
3737
# Dependency directories
3838
node_modules/
3939
jspm_packages/
40+
**/.storybook/node_modules
4041

4142
# Optional npm cache directory
4243
.npm
@@ -66,16 +67,37 @@ jspm_packages/
6667
common/deploy/
6768
common/temp/
6869
common/autoinstallers/*/.npmrc
69-
**/.rush/temp/
70+
**/temp/
71+
7072

7173
# build output
7274
**/dist/
75+
**/lib-commonjs/
76+
**/lib-esm/
77+
**/types/**/*.d.ts
78+
tsdoc-metadata.json
79+
80+
storybook-static/
7381

7482
apps/docs/out/
7583

84+
# Heft
85+
**/.heft/
86+
7687
# SVGR intermediate build steps
7788
packages/icons/components/
7889

90+
# ESLint temp
91+
**/temp/_eslint-*.json
92+
93+
# IDEs
94+
.vscode
95+
.idea
96+
97+
package-lock.json
98+
.npmrc
99+
RELEASE_NOTES.md
100+
79101
#-------------------------------------------------------------------------------------------------------------------
80102
# Prettier-specific overrides
81103
#-------------------------------------------------------------------------------------------------------------------

0 commit comments

Comments
 (0)