Skip to content

Commit 183ddb2

Browse files
Remove .prettierrc file and update documentation to reference .prettierrc.js
1 parent d4809c9 commit 183ddb2

3 files changed

Lines changed: 9 additions & 8 deletions

File tree

.prettierrc

Lines changed: 0 additions & 6 deletions
This file was deleted.

.prettierrc.js

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
module.exports = {
2+
semi: true,
3+
trailingComma: 'all',
4+
singleQuote: true,
5+
printWidth: 120,
6+
tabWidth: 2,
7+
};

docs/PROJECT_CONFIGURATION.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,9 @@ ESLint is a linting tool for JavaScript. By providing specific configuration def
1212

1313
## Prettier
1414

15-
This is a great tool for formatting code. It enforces a consistent code style across your entire codebase. By utilizing the "format on save" feature in your IDE you can automatically format the code based on the configuration provided in the `.prettierrc` file. It will also give you good feedback when something is wrong with the code. If the auto-format doesn't work, something is wrong with the code.
15+
This is a great tool for formatting code. It enforces a consistent code style across your entire codebase. By utilizing the "format on save" feature in your IDE you can automatically format the code based on the configuration provided in the `.prettierrc.js` file. It will also give you good feedback when something is wrong with the code. If the auto-format doesn't work, something is wrong with the code.
1616

17-
[Prettier Configuration](../.prettierrc)
17+
[Prettier Configuration](../.prettierrc.js)
1818

1919
## TypeScript
2020

0 commit comments

Comments
 (0)