chore: migrate eslint configs (#11234)

Co-authored-by: kodiakhq[bot] <49736102+kodiakhq[bot]@users.noreply.github.com>
This commit is contained in:
Danial Raza
2025-11-12 10:50:07 +01:00
committed by GitHub
parent 8ed93b3269
commit d923e90ae6
6 changed files with 50 additions and 23 deletions

View File

@@ -0,0 +1,21 @@
import common from 'eslint-config-neon/common';
import node from 'eslint-config-neon/node';
import prettier from 'eslint-config-neon/prettier';
const config = [
{
ignores: [],
},
...common,
...node,
...prettier,
{
rules: {
'jsdoc/check-tag-names': 0,
'jsdoc/no-undefined-types': 0,
'jsdoc/valid-types': 0,
},
},
];
export default config;