mirror of
https://github.com/perfect-panel/ppanel-web.git
synced 2026-02-06 11:40:28 -05:00
14 lines
329 B
JavaScript
14 lines
329 B
JavaScript
import { nextJsConfig } from '@workspace/eslint-config/next-js';
|
|
|
|
/** @type {import("eslint").Linter.Config} */
|
|
export default [
|
|
...nextJsConfig,
|
|
{
|
|
rules: {
|
|
'@typescript-eslint/no-namespace': 'off',
|
|
'@typescript-eslint/no-explicit-any': 'off',
|
|
'@typescript-eslint/no-unused-vars': 'off',
|
|
},
|
|
},
|
|
];
|