@cityssm/mpac-yetf
Version:
Parses the MPAC Year-End Tax File (YETF) into a usable object.
20 lines (19 loc) • 499 B
JavaScript
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;