20 lines
502 B
TypeScript
20 lines
502 B
TypeScript
|
|
import type { OxlintConfig } from 'oxlint';
|
||
|
|
|
||
|
|
const comments: OxlintConfig = {
|
||
|
|
jsPlugins: [
|
||
|
|
{
|
||
|
|
name: 'eslint-comments',
|
||
|
|
specifier: '@eslint-community/eslint-plugin-eslint-comments',
|
||
|
|
},
|
||
|
|
],
|
||
|
|
rules: {
|
||
|
|
'eslint/no-underscore-dangle': 'off',
|
||
|
|
'eslint-comments/no-aggregating-enable': 'error',
|
||
|
|
'eslint-comments/no-duplicate-disable': 'error',
|
||
|
|
'eslint-comments/no-unlimited-disable': 'error',
|
||
|
|
'eslint-comments/no-unused-enable': 'error',
|
||
|
|
},
|
||
|
|
};
|
||
|
|
|
||
|
|
export { comments };
|