Результаты проверки разных красавиц

#github-actions #prettier

Вопрос:

У меня есть сценарий "lint:prettier": "prettier --check --ignore-unknown "**/*.*"", . Затем я запускаю его, я получаю успешный результат, но в действиях github я получаю ошибки

Github action lint-рабочий процесс действий:

 - name: Run linters
  run: npm run lint:prettier
 

введите описание изображения здесь

введите описание изображения здесь

.prettierrc.js:

 module.exports = {
  semi: true,
  trailingComma: 'all',
  singleQuote: true,
  printWidth: 120,
  tabWidth: 2,
  endOfLine: 'auto',
};
 

.eslintrc.js:

 module.exports = {
  parser: '@typescript-eslint/parser', // Specifies the ESLint parser
  extends: [
    'plugin:react/recommended', // Uses the recommended rules from @eslint-plugin-react
    'plugin:@typescript-eslint/recommended', // Uses the recommended rules from the @typescript-eslint/eslint-plugin
    'plugin:prettier/recommended', // Enables eslint-plugin-prettier and displays prettier errors as ESLint errors. Make sure this is always the last configuration in the extends array.
  ],
  parserOptions: {
    ecmaVersion: 2018, // Allows for the parsing of modern ECMAScript features
    sourceType: 'module', // Allows for the use of imports
    ecmaFeatures: {
      jsx: true, // Allows for the parsing of JSX
    },
  },
  rules: {
    'react/prop-types': [2, { ignore: ['children'] }],
  },
  settings: {
    react: {
      version: 'detect', // Tells eslint-plugin-react to automatically detect the version of React to use
    },
  },
};

 

Как я могу это исправить?