This repository was archived by the owner on Apr 25, 2026. It is now read-only.
v0.3.0
deprecation/deprecation rule
1. Modify the main config
export default xenopomp(
{
deprecation: 'warn',
// You may have to create custom tsconfig file, because parser plugin will not find
// your ts files
tsconfigPath: './.config/ts/tsconfig.lint.json',
},
);2. Create custom tsconfig
// .config/ts/tsconfig.lint.json
{
"extends": "../../tsconfig.json",
"include": [
"../../**/*.ts",
"../../**/*.tsx",
"../../**/.config/**/*.ts",
"../../**/__tests__/**/*.ts",
],
"exclude": ["node_modules"]
}