feat: Adding Google Analytics and editorconf.json to code format #4
No reviewers
Labels
No labels
bug
documentation
duplicate
enhancement
good first issue
help wanted
invalid
question
wontfix
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
rdenadai/rdenadai.com.br!4
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "rdenadai/gtag-and-editorconf"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Pull Request Overview
This PR adds Google Analytics tracking to the website and implements code formatting standardization through an .editorconfig file. The changes focus on improving analytics capabilities and establishing consistent code formatting across HTML templates.
Reviewed Changes
Copilot reviewed 11 out of 11 changed files in this pull request and generated 2 comments.
Tip: Customize your code reviews with copilot-instructions.md. Create the file or learn how to get started.
@ -0,0 +7,4 @@charset = utf-8trim_trailing_whitespace = trueinsert_final_newline = truemax_line_length = 120The max_line_length setting of 120 characters conflicts with the actual formatting changes made in the HTML templates, where very long lines exceed this limit (e.g., lines with multiple CSS classes). Consider either increasing this value or applying line wrapping to maintain consistency with the defined standard.
The Google Analytics tracking ID 'G-B4QSP6YL4P' is hardcoded in the template. Consider using an environment variable or configuration setting to avoid exposing tracking IDs in source code and enable different IDs for different environments (development, staging, production).