aboutsummaryrefslogtreecommitdiffstats
path: root/spring-front/.eslintrc.js
diff options
context:
space:
mode:
Diffstat (limited to 'spring-front/.eslintrc.js')
-rw-r--r--spring-front/.eslintrc.js22
1 files changed, 22 insertions, 0 deletions
diff --git a/spring-front/.eslintrc.js b/spring-front/.eslintrc.js
new file mode 100644
index 0000000..e6d7ba5
--- /dev/null
+++ b/spring-front/.eslintrc.js
@@ -0,0 +1,22 @@
+module.exports = {
+ "env": {
+ "browser": true,
+ "es2021": true
+ },
+ "extends": [
+ "eslint:recommended",
+ "plugin:react/recommended"
+ ],
+ "parserOptions": {
+ "ecmaFeatures": {
+ "jsx": true
+ },
+ "ecmaVersion": "latest",
+ "sourceType": "module"
+ },
+ "plugins": [
+ "react"
+ ],
+ "rules": {
+ }
+}