-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.eslintrc.cjs
58 lines (55 loc) · 1.63 KB
/
.eslintrc.cjs
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
46
47
48
49
50
51
52
53
54
55
56
57
58
module.exports = {
root: true,
env: { browser: true, es2020: true },
extends: [
'eslint:recommended',
'plugin:@typescript-eslint/recommended',
'plugin:react-hooks/recommended',
],
ignorePatterns: ['dist', '.eslintrc.cjs'],
parser: '@typescript-eslint/parser',
plugins: ['eslint-plugin-react-compiler'],
rules: {
'@typescript-eslint/no-unused-vars': 'off',
'@typescript-eslint/no-explicit-any': 'off',
'react-compiler/react-compiler': 'error'
},
}
// import react from 'eslint-plugin-react';
// import reactCompiler from 'eslint-plugin-react-compiler';
// import eslint from '@eslint/js';
// import tseslint from 'typescript-eslint';
// export default tseslint.config(
// //react.configs.flat.recommended,
// //eslint.configs.recommended,
// //tseslint.configs.recommended,
// {
// files: ['**/*.{js,jsx,mjs,cjs,ts,tsx}'],
// plugins: {
// 'react-compiler': reactCompiler,
// },
// rules: {
// // 'no-unused-vars': 'off',
// // 'no-undef': 'off',
// //'react/no-children-prop':'error',
// 'react-compiler/react-compiler': 'error',
// },
// }
// );
// export default [
// //js.configs.recommended,
// react.configs.flat.recommended,
// {
// files: ['**/*.{js,jsx,mjs,cjs,ts,tsx}'],
// ignores: ["out/", "dist/", "node_modules/"],
// // plugins: {
// // react,
// // 'react-compiler': reactCompiler,
// // },
// rules: {
// //"no-unused-vars": "error",
// //"no-undef": "error",
// //'react-compiler/react-compiler': 'error',
// },
// }
// ];