mirror of
https://github.com/reactjs/react.dev.git
synced 2026-02-21 19:31:57 +00:00
18 lines
400 B
Plaintext
18 lines
400 B
Plaintext
{
|
|
"root": true,
|
|
"extends": "next/core-web-vitals",
|
|
"parser": "@typescript-eslint/parser",
|
|
"plugins": ["@typescript-eslint"],
|
|
"rules": {
|
|
"no-unused-vars": "off",
|
|
"@typescript-eslint/no-unused-vars": ["error", { "varsIgnorePattern": "^_" }],
|
|
"react-hooks/exhaustive-deps": "error"
|
|
},
|
|
"env": {
|
|
"node": true,
|
|
"commonjs": true,
|
|
"browser": true,
|
|
"es6": true
|
|
}
|
|
}
|