35 lines
666 B
YAML
35 lines
666 B
YAML
$schema: 'https://moonrepo.dev/schema/config/v2.json'
|
|||
|
|
|
||
|
|
# Global task templates — each project must explicitly inherit via workspace.inheritedTasks
|
||
|
|
# In moon v2, these define reusable task templates
|
||
|
|
tasks:
|
||
|
|
lint:
|
||
|
|
command: biome
|
||
|
|
args:
|
||
|
|
- check
|
||
|
|
- '--diagnostic-level=error'
|
||
|
|
- .
|
||
|
|
options:
|
||
|
|
runFromWorkspaceRoot: false
|
||
|
|
inputs:
|
||
|
|
- 'src/**/*'
|
||
|
|
- '*.js'
|
||
|
|
- '*.mjs'
|
||
|
|
- '*.ts'
|
||
|
|
- '*.mts'
|
||
|
|
|
||
|
|
format:
|
||
|
|
command: biome
|
||
|
|
args:
|
||
|
|
- format
|
||
|
|
- '--write'
|
||
|
|
- .
|
||
|
|
options:
|
||
|
|
runFromWorkspaceRoot: false
|
||
|
|
inputs:
|
||
|
|
- 'src/**/*'
|
||
|
|
- '*.js'
|
||
|
|
- '*.mjs'
|
||
|
|
- '*.ts'
|
||
|
|
- '*.mts'
|