mirror of
https://github.com/movie-web/native-app.git
synced 2025-09-13 13:13:25 +00:00
25 lines
400 B
JavaScript
25 lines
400 B
JavaScript
/** @type {import('eslint').Linter.Config} */
|
|
const config = {
|
|
extends: [
|
|
"plugin:react/recommended",
|
|
"plugin:react-hooks/recommended",
|
|
"plugin:jsx-a11y/recommended",
|
|
],
|
|
rules: {
|
|
"react/prop-types": "off",
|
|
},
|
|
globals: {
|
|
React: "writable",
|
|
},
|
|
settings: {
|
|
react: {
|
|
version: "detect",
|
|
},
|
|
},
|
|
env: {
|
|
browser: true,
|
|
},
|
|
};
|
|
|
|
module.exports = config;
|