eslint-plugin-valkyriecoms/index.js

17 lines
337 B
JavaScript
Raw Permalink Normal View History

2024-10-02 04:14:11 -07:00
import recommended from './configs/recommended.js';
// import packageConfig from './package.json' with { type: 'json' };
const plugin = {
meta: {
// name: packageConfig.name,
// version: packageConfig.version,
name: '@valkyriecoms/eslint-plugin',
version: '1.0.0',
},
2024-09-30 23:04:25 -07:00
configs: {
2024-10-02 04:14:11 -07:00
recommended,
2024-09-30 23:04:25 -07:00
},
};
2024-10-02 04:14:11 -07:00
export default plugin;