mirror of
https://github.com/FreshRSS/FreshRSS.git
synced 2026-02-02 17:41:05 -05: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
21
.github/instructions/javascript.instructions.md
vendored
Normal file
21
.github/instructions/javascript.instructions.md
vendored
Normal file
@@ -0,0 +1,21 @@
|
||||
---
|
||||
applyTo: "**/*.js"
|
||||
description: Editing JavaScript files
|
||||
---
|
||||
|
||||
# JavaScript files
|
||||
|
||||
* Obey formatting rules defined in [`eslint.config.js`](../../eslint.config.js)
|
||||
* Automatic fixes can be done with:
|
||||
```sh
|
||||
npm run eslint_fix
|
||||
# or (targeting more than just JavaScript)
|
||||
make fix-all
|
||||
```
|
||||
* Validation can be done with:
|
||||
```sh
|
||||
npm run eslint
|
||||
# or (targeting more than just JavaScript)
|
||||
make test-all
|
||||
```
|
||||
* Check [`package.json`](../../package.json) scripts for details about available individual commands.
|
||||
Reference in New Issue
Block a user