We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a96b84f commit 44eac09Copy full SHA for 44eac09
.babelrc
@@ -0,0 +1,6 @@
1
+{
2
+ "presets": [
3
+ "@babel/preset-env",
4
+ ["@babel/preset-react", {"absoluteRuntime": false}]
5
+ ]
6
+}
.eslintrc.json
@@ -0,0 +1,31 @@
+ "env": {
+ "browser": true,
+ "es2021": true
+ },
+ "extends": [
7
+ "eslint:recommended",
8
+ "plugin:react/recommended"
9
+ ],
10
+ "parser": "@babel/eslint-parser",
11
+ "parserOptions": {
12
+ "ecmaFeatures": {
13
+ "jsx": true
14
15
+ "ecmaVersion": 12,
16
+ "sourceType": "module"
17
18
+ "plugins": [
19
+ "react"
20
21
+ "rules": {
22
+ "react/prop-types": "off",
23
+ "no-prototype-builtins": "off",
24
+ "no-unused-vars": "warn",
25
+ "no-unreachable": "warn"
26
27
+ "globals": {
28
+ "React": "readonly",
29
+ "ReactDOM": "readonly"
30
+ }
31
0 commit comments