mirror of
https://github.com/moeru-ai/airi.git
synced 2026-08-14 00:48:06 +00:00
14 lines
260 B
TypeScript
14 lines
260 B
TypeScript
import jsPlugin from '@alint-js/plugin-js'
|
|
|
|
import { defineConfig } from '@alint-js/cli'
|
|
|
|
export default defineConfig([
|
|
{
|
|
extends: ['js/recommended'],
|
|
files: ['**/*.{js,jsx,ts,tsx,mjs,cjs,mts,cts}'],
|
|
plugins: {
|
|
js: jsPlugin,
|
|
},
|
|
},
|
|
])
|