UNPKG

eslint-plugin-cursor

Version:

ESLint plugin to detect mojibake (garbled characters) in source code

15 lines (14 loc) 229 B
import cursor from './rules/cursor'; export = { rules: { 'no-mojibake': cursor, }, configs: { recommended: { plugins: ['cursor'], rules: { 'cursor/no-mojibake': 'error', }, }, }, };