-
Notifications
You must be signed in to change notification settings - Fork 0
/
eslint.config.js
38 lines (37 loc) · 984 Bytes
/
eslint.config.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
const reactNativeConfig = require("@react-native/eslint-config");
const babelParser = require("@babel/eslint-parser");
const reactHooksPlugin = require("eslint-plugin-react-hooks");
const eslintConfigPrettier = require("eslint-config-prettier");
module.exports = [
{
files: ["**/*.js", "**/*.jsx", "**/*.ts", "**/*.tsx"],
languageOptions: {
ecmaVersion: 2021,
sourceType: "module",
parser: babelParser,
parserOptions: {
requireConfigFile: false,
babelOptions: {
babelrc: false,
configFile: false,
presets: ["@babel/preset-react"],
},
},
},
plugins: {
"react-hooks": reactHooksPlugin,
reactNativeConfig,
eslintConfigPrettier,
},
rules: {
"prefer-const": "error",
...reactHooksPlugin.configs.recommended.rules,
},
settings: {
react: {
version: "detect",
},
},
ignores: ["venv/**", "node_modules/**"],
},
];