32 lines
538 B
JavaScript
32 lines
538 B
JavaScript
import { defineConfig } from 'eslint/config';
|
|
import grafanaConfig from '@grafana/eslint-config/flat.js';
|
|
|
|
export default defineConfig([
|
|
...grafanaConfig,
|
|
{
|
|
rules: {
|
|
'react/prop-types': 'off',
|
|
},
|
|
},
|
|
{
|
|
files: ['src/**/*.{ts,tsx}'],
|
|
|
|
languageOptions: {
|
|
parserOptions: {
|
|
project: './tsconfig.json',
|
|
},
|
|
},
|
|
|
|
rules: {
|
|
'@typescript-eslint/no-deprecated': 'warn',
|
|
},
|
|
},
|
|
{
|
|
files: ['./tests/**/*'],
|
|
|
|
rules: {
|
|
'react-hooks/rules-of-hooks': 'off',
|
|
},
|
|
},
|
|
]);
|