-
Notifications
You must be signed in to change notification settings - Fork 7
/
eslint.config.js
45 lines (42 loc) · 1.04 KB
/
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
39
40
41
42
43
44
45
import react from 'eslint-plugin-react';
import unusedImports from "eslint-plugin-unused-imports";
import globals from 'globals';
const reactRecommended = require('eslint-plugin-react/configs/recommended');
const lint = [
reactRecommended,
{
files: ["**/*.{js,jsx,mjs,cjs,ts,tsx}"],
plugins: {
react,
"unused-imports": unusedImports
},
languageOptions: {
ecmaVersion: "latest",
sourceType: "module",
parserOptions: {
ecmaFeatures: {
jsx: true,
},
},
globals: {
...globals.browser,
},
},
rules: {
"react/jsx-uses-react": "error",
"react/jsx-uses-vars": "error",
"no-unused-vars": "off", // or "@typescript-eslint/no-unused-vars": "off",
"unused-imports/no-unused-imports": "error",
"unused-imports/no-unused-vars": [
"warn",
{
vars: "all",
varsIgnorePattern: "^_",
args: "after-used",
argsIgnorePattern: "^_",
},
],
},
},
];
export default lint