mirror of
https://github.com/FreshRSS/FreshRSS.git
synced 2026-05-18 21:34:35 -04:00
Initial conventions for AI agents and humans: AGENTS.md, SKILLS.md, instructions.md (#8478)
Not stable yet, but initial structure https://agents.md https://agentskills.io/specification https://code.visualstudio.com/docs/copilot/customization/custom-instructions https://code.visualstudio.com/docs/copilot/customization/agent-skills
This commit is contained in:
committed by
GitHub
parent
dae27ebd5d
commit
5beebfcd45
31
.github/instructions/css.instructions.md
vendored
Normal file
31
.github/instructions/css.instructions.md
vendored
Normal file
@@ -0,0 +1,31 @@
|
||||
---
|
||||
applyTo: "**/*.css"
|
||||
description: Editing CSS files
|
||||
---
|
||||
|
||||
# CSS files
|
||||
|
||||
* Obey formatting rules defined in [`.stylelintrc.json`](../../.stylelintrc.json)
|
||||
* Automatic fixes can be done with:
|
||||
```sh
|
||||
npm run stylelint_fix
|
||||
# or (targeting more than just CSS)
|
||||
make fix-all
|
||||
```
|
||||
* Validation can be done with:
|
||||
```sh
|
||||
npm run stylelint
|
||||
# or (targeting more than just CSS)
|
||||
make test-all
|
||||
```
|
||||
|
||||
## Right-to-left CSS files
|
||||
|
||||
* Do not edit RTL CSS `*.rtl.css` files manually.
|
||||
* RTL CSS files are auto-generated from LTR CSS files using the `rtlcss` tool.
|
||||
* Run the following command to regenerate the RTL files:
|
||||
```sh
|
||||
npm run rtlcss
|
||||
# or
|
||||
make rtl
|
||||
```
|
||||
Reference in New Issue
Block a user