core: update project configuration files
Removes permission setting from opencode config and adds test root configuration to prevent running tests from project root.pull/6319/head
parent
f31006b1cd
commit
8d8f544ccf
|
|
@ -5,7 +5,6 @@
|
|||
// "url": "https://enterprise.dev.opencode.ai",
|
||||
// },
|
||||
"instructions": ["STYLE_GUIDE.md"],
|
||||
"permission": "ask",
|
||||
"provider": {
|
||||
"opencode": {
|
||||
"options": {},
|
||||
|
|
|
|||
|
|
@ -1,2 +1,6 @@
|
|||
[install]
|
||||
exact = true
|
||||
|
||||
[test]
|
||||
root = "./do-not-run-tests-from-root"
|
||||
|
||||
|
|
|
|||
|
|
@ -10,7 +10,8 @@
|
|||
"typecheck": "bun turbo typecheck",
|
||||
"prepare": "husky",
|
||||
"random": "echo 'Random script'",
|
||||
"hello": "echo 'Hello World!'"
|
||||
"hello": "echo 'Hello World!'",
|
||||
"test": "echo 'do not run tests from root' && exit 1"
|
||||
},
|
||||
"workspaces": {
|
||||
"packages": [
|
||||
|
|
|
|||
Loading…
Reference in New Issue