Как сделать, чтобы мой еслинт подстроился под этот проект?
в корне проекта в файле eslintc.js добавь след rules: { 'prettier/prettier': 0, "react/prop-types": 0 },
Такого файла в проекте нет)
.eslintrc.js
вот мой module.exports = { // parser: '@typescript-eslint/parser', // Specifies the ESLint parser parserOptions: { ecmaVersion: 2020, // 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 }, }, settings: { react: { version: 'detect', // Tells eslint-plugin-react to automatically detect the version of React to use }, }, extends: [ 'react-app', 'plugin:react/recommended', // Uses the recommended rules from @eslint-plugin-react 'plugin:prettier/recommended', // Enables eslint-plugin-prettier and eslint-config-prettier. This will display prettier errors as ESLint errors. Make sure this is always the last configuration in the extends array. ], plugins: ['react', 'react-hooks'], rules: { 'prettier/prettier': 0, "react/prop-types": 0 // Place to specify ESLint rules. Can be used to overwrite rules specified from the extended configs // e.g. "@typescript-eslint/explicit-function-return-type": "off", }, }
можешь удалить еслинт вообще и все норм будет))
😃 Так я не понимаю одного. То есть у чела который все разрабатывал код не подсвечивался красным, а если я сейчас настрою еслинт, то форматируются все файлы и придется их заливать на гит. Я из-за этого и хочу подстроить свой еслинт под настройки проекта
Вы расширяете область действия еслинта) так что влияет. Если файлов не слишком много (штук 20-30), то пройдитесь посмотрите, что ему не нравится
Попросите его настройки
Нужен файл eslint.js?
Обсуждают сегодня