mirror of
https://github.com/ente-io/ente.git
synced 2025-08-05 05:24:26 +00:00
12 lines
233 B
JavaScript
12 lines
233 B
JavaScript
/* eslint-env node */
|
|
module.exports = {
|
|
extends: [
|
|
"./eslintrc-base.js",
|
|
"plugin:react/recommended",
|
|
"plugin:react-hooks/recommended",
|
|
],
|
|
settings: {
|
|
react: { version: "18.2" },
|
|
},
|
|
};
|