Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 6 additions & 8 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -430,14 +430,12 @@ npx prettier --write src/your-file.vue

#### Prettier Configuration

RUXAILAB uses Prettier for consistent code formatting. While there's no `.prettierrc` file, Prettier uses sensible defaults:

- **Print Width**: 80 characters
- **Tabs**: 2 spaces (no tabs)
- **Quotes**: Double quotes for strings
- **Semicolons**: Enabled
- **Trailing Commas**: ES5 style (where valid in older JS)
- **Arrow Functions**: Always add parentheses around parameters
RUXAILAB uses Prettier for consistent code formatting. The configuration is defined in the `.prettierrc` file at the project root:

- **Quotes**: Single quotes for strings (`singleQuote: true`)
- **Trailing Commas**: All trailing commas (`trailingComma: "all"`)
- **Semicolons**: Disabled (`semi: false`)
- **Arrow Functions**: Always add parentheses around parameters (`arrowParens: "always"`)

#### ESLint Configuration

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -179,7 +179,7 @@ Then get the url, go to the .env file and add the following sentence:
VUE_APP_FIREBASE_PYTHON_FUNCTION = 'url'
```

If you want to deply the fuction, change your account from spark to blaze, run:
If you want to deploy the function, change your account from spark to blaze, run:

```bash
firebase deploy --only functions
Expand Down
Loading