UNPKG

@antfu/eslint-define-config

Version:

Provide a defineConfig function for .eslintrc.js files

23 lines (20 loc) 491 B
import type { RuleConfig } from '../rule-config'; /** * Disallow octal literals. * * @see [no-octal](https://eslint.org/docs/latest/rules/no-octal) */ export type NoOctalRuleConfig = RuleConfig<[]>; /** * Disallow octal literals. * * @see [no-octal](https://eslint.org/docs/latest/rules/no-octal) */ export interface NoOctalRule { /** * Disallow octal literals. * * @see [no-octal](https://eslint.org/docs/latest/rules/no-octal) */ 'no-octal': NoOctalRuleConfig; }