What is create-react-app 's eslint rule "react-app"?

after generating react"s project structure through create-react-app, I feel that the built-in eslint rule doesn"t work because it doesn"t require even the most basic "and" whether or not the ending is needed. How can such rules be used by the team? or do you have to add rules to rules?

so if I want to change this to the airbnb rule now, how should I change it

// package.json
"eslintConfig": {
    "extends": "react-app"
  }
Mar.02,2021

npm address


//.eslintrc
{
  "extends": ["eslint:recommended", "airbnb"],
  "env": {
    "browser": true,
    "commonjs": true,
    "node": true,
    "es6": true
  },
  "parserOptions": {
    "ecmaVersion": 6
  },
  "rules": {
    "no-console": "off",
    "strict": ["error", "global"],
    "curly": "warn"
  }
}
If not, delete eslint:recommended
directly "extends": "airbnb",

MySQL Query : SELECT * FROM `codeshelper`.`v9_news` WHERE status=99 AND catid='6' ORDER BY rand() LIMIT 5
MySQL Error : Disk full (/tmp/#sql-temptable-64f5-1b3863a-4d7aa.MAI); waiting for someone to free some space... (errno: 28 "No space left on device")
MySQL Errno : 1021
Message : Disk full (/tmp/#sql-temptable-64f5-1b3863a-4d7aa.MAI); waiting for someone to free some space... (errno: 28 "No space left on device")
Need Help?