You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
365 B
TypeScript
19 lines
365 B
TypeScript
import { defineConfig } from 'oxlint';
|
|
|
|
export default defineConfig({
|
|
plugins: ['typescript', 'unicorn', 'oxc'],
|
|
categories: {
|
|
correctness: 'error',
|
|
suspicious: 'warn',
|
|
pedantic: 'warn',
|
|
},
|
|
rules: {
|
|
'eslint/max-lines': 'off',
|
|
'eslint/max-lines-per-function': 'off',
|
|
},
|
|
env: {
|
|
builtin: true,
|
|
},
|
|
ignorePatterns: ['dist/'],
|
|
});
|