command.ts 247 B

123456789101112131415
  1. import type { OxlintConfig } from 'oxlint';
  2. const command: OxlintConfig = {
  3. jsPlugins: [
  4. {
  5. name: 'command',
  6. specifier: 'eslint-plugin-command',
  7. },
  8. ],
  9. rules: {
  10. 'command/command': 'error',
  11. },
  12. };
  13. export { command };