29 lines
768 B
JavaScript
29 lines
768 B
JavaScript
// module.exports = {
|
|
// parser: '@typescript-eslint/parser',
|
|
// extends: [
|
|
// 'plugin:react/recommended',
|
|
// 'plugin:@typescript-eslint/recommended',
|
|
// 'prettier/@typescript-eslint',
|
|
// 'plugin:prettier/recommended',
|
|
// 'plugin:react-hooks/recommended',
|
|
// ],
|
|
// parserOptions: {
|
|
// ecmaVersion: 2020,
|
|
// sourceType: 'module',
|
|
// ecmaFeatures: {
|
|
// jsx: true,
|
|
// },
|
|
// },
|
|
// rules: {
|
|
// '@typescript-eslint/no-unused-vars': ['error', { argsIgnorePattern: '^_|^req|^next' }],
|
|
// '@typescript-eslint/no-explicit-any': 0,
|
|
// '@typescript-eslint/explicit-function-return-type': 0,
|
|
// 'react/prop-types': 0,
|
|
// },
|
|
// settings: {
|
|
// react: {
|
|
// version: 'detect',
|
|
// },
|
|
// },
|
|
// };
|