mirror of
https://github.com/bellingcat/ukraine-timemap.git
synced 2026-06-07 19:08:37 +03:00
32 lines
481 B
JavaScript
32 lines
481 B
JavaScript
module.exports = {
|
|
root: true,
|
|
plugins: [],
|
|
|
|
parserOptions: {
|
|
sourceType: "module",
|
|
ecmaFeatures: {
|
|
jsx: true,
|
|
},
|
|
},
|
|
settings: {
|
|
react: {
|
|
version: "detect",
|
|
},
|
|
},
|
|
extends: [
|
|
"eslint:recommended",
|
|
"plugin:react/recommended",
|
|
"plugin:react/jsx-runtime",
|
|
"plugin:react-hooks/recommended",
|
|
"prettier",
|
|
],
|
|
env: {
|
|
browser: true,
|
|
es2022: true,
|
|
jest: true,
|
|
},
|
|
rules: {
|
|
"react/prop-types": 0,
|
|
}
|
|
};
|