UNPKG

@cityssm/mpac-yetf

Version:

Parses the MPAC Year-End Tax File (YETF) into a usable object.

20 lines (19 loc) 499 B
import eslintConfigCityssm, { cspellWords, defineConfig } from 'eslint-config-cityssm'; const config = defineConfig(eslintConfigCityssm, { files: ['**/*.ts'], rules: { '@cspell/spellchecker': [ 'warn', { cspell: { words: [ ...cspellWords, 'mpac', 'yetf' ] } } ] } }); export default config;