@cityssm/mpac-yetf
Version:
Parses the MPAC Year-End Tax File (YETF) into a usable object.
24 lines (22 loc) • 420 B
text/typescript
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