mirror of
https://github.com/robonen/tools.git
synced 2026-03-20 02:44:45 +00:00
feat(monorepo): migrate vue packages and apply oxlint refactors
This commit is contained in:
14
core/encoding/oxlint.config.ts
Normal file
14
core/encoding/oxlint.config.ts
Normal file
@@ -0,0 +1,14 @@
|
||||
import { defineConfig } from 'oxlint';
|
||||
import { compose, base, typescript, imports, stylistic } from '@robonen/oxlint';
|
||||
|
||||
export default defineConfig(compose(base, typescript, imports, stylistic, {
|
||||
overrides: [
|
||||
{
|
||||
files: ['src/qr/qr-code.ts'],
|
||||
rules: {
|
||||
'@stylistic/max-statements-per-line': 'off',
|
||||
'@stylistic/no-mixed-operators': 'off',
|
||||
},
|
||||
},
|
||||
],
|
||||
}));
|
||||
Reference in New Issue
Block a user