wrapture
Version:
Wrapture lets you go from a Python-trained model to deployable JavaScript with a single command. It generates TypeScript bindings and a Web/Node-compatible wrapper, using WebGPU/WASM-ready ONNX runtimes.
17 lines (15 loc) • 345 B
JavaScript
import { defineConfig } from 'eslint/config';
import customConfig from 'eslint-config-phun-ky';
// eslint-disable-next-line import/no-unused-modules
export default defineConfig([
{
extends: [customConfig]
},
{
files: ['**/*.md'],
rules: {
'no-irregular-whitespace': 'off',
'@stylistic/indent': 'off'
}
}
]);