Conversation
|
This pull request sets up GitHub code scanning for this repository. Once the scans have completed and the checks have passed, the analysis results for this pull request branch will appear on this overview. Once you merge this pull request, the 'Security' tab will show more code scanning analysis results (for example, for the default branch). Depending on your configuration and choice of analysis tool, future pull requests will be annotated with code scanning analysis results. For more information about GitHub code scanning, check out the documentation. |
1 similar comment
|
This pull request sets up GitHub code scanning for this repository. Once the scans have completed and the checks have passed, the analysis results for this pull request branch will appear on this overview. Once you merge this pull request, the 'Security' tab will show more code scanning analysis results (for example, for the default branch). Depending on your configuration and choice of analysis tool, future pull requests will be annotated with code scanning analysis results. For more information about GitHub code scanning, check out the documentation. |
| @@ -0,0 +1,46 @@ | |||
| @import "tailwindcss"; | |||
Check notice
Code scanning / Csslint (reported by Codacy)
@import prevents parallel downloads, use instead. Note
| @@ -0,0 +1,46 @@ | |||
| @import "tailwindcss"; | |||
|
|
|||
| @theme { | |||
Check warning
Code scanning / Csslint (reported by Codacy)
Unknown @ rule: @theme. Warning
| @media (prefers-color-scheme: dark) { | ||
| color-scheme: dark; | ||
| } | ||
| } |
Check warning
Code scanning / Csslint (reported by Codacy)
Unexpected token '}' at line 15, col 1. Warning
| } | ||
|
|
||
| @keyframes slideIn { | ||
| from { |
Check warning
Code scanning / Csslint (reported by Codacy)
Rule doesn't have all its properties in alphabetical order. Warning
| transform: translateX(100%); | ||
| opacity: 0; | ||
| } | ||
| to { |
Check warning
Code scanning / Csslint (reported by Codacy)
Rule doesn't have all its properties in alphabetical order. Warning
| } | ||
|
|
||
| @keyframes slideOut { | ||
| from { |
Check warning
Code scanning / Csslint (reported by Codacy)
Rule doesn't have all its properties in alphabetical order. Warning
| transform: translateX(0); | ||
| opacity: 1; | ||
| } | ||
| to { |
Check warning
Code scanning / Csslint (reported by Codacy)
Rule doesn't have all its properties in alphabetical order. Warning
| @@ -0,0 +1,46 @@ | |||
| @import "tailwindcss"; | |||
|
|
|||
| @theme { | |||
Check warning
Code scanning / Stylelint (reported by Codacy)
Unexpected unknown at-rule "@theme" (at-rule-no-unknown) Warning
| @import "tailwindcss"; | ||
|
|
||
| @theme { | ||
| --font-sans: "Inter", ui-sans-serif, system-ui, sans-serif, |
Check warning
Code scanning / Stylelint (reported by Codacy)
Expected newline after "," in a multi-line list (value-list-comma-newline-after) Warning
| @import "tailwindcss"; | ||
|
|
||
| @theme { | ||
| --font-sans: "Inter", ui-sans-serif, system-ui, sans-serif, |
Check warning
Code scanning / Stylelint (reported by Codacy)
Expected newline after ":" with a multi-line declaration (declaration-colon-newline-after) Warning
|
|
||
| @theme { | ||
| --font-sans: "Inter", ui-sans-serif, system-ui, sans-serif, | ||
| "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; |
Check warning
Code scanning / Stylelint (reported by Codacy)
Expected newline after "," in a multi-line list (value-list-comma-newline-after) Warning
| } | ||
| } | ||
|
|
||
|
|
Check warning
Code scanning / Stylelint (reported by Codacy)
Expected no more than 1 empty line (max-empty-lines) Warning
| transform: translateX(100%); | ||
| opacity: 0; | ||
| } | ||
| to { |
Check warning
Code scanning / Stylelint (reported by Codacy)
Expected empty line before rule (rule-empty-line-before) Warning
| transform: translateX(0); | ||
| opacity: 1; | ||
| } | ||
| to { |
Check warning
Code scanning / Stylelint (reported by Codacy)
Expected empty line before rule (rule-empty-line-before) Warning
No description provided.