Skip to content

Commit aed0749

Browse files
authored
chore: add Prettier configuration
Add Prettier configuration for consistent code formatting. This configuration: - Uses single quotes for strings - Enforces semicolons - Sets tab width to 2 spaces - Uses ES5 trailing commas - Sets a reasonable print width of 100 characters Helps maintain consistent code style across the project.
1 parent f542e85 commit aed0749

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

.github/workflows/.prettierrc.js

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

0 commit comments

Comments
 (0)