aboutsummaryrefslogtreecommitdiffstats
path: root/spring-front/.eslintrc.js
diff options
context:
space:
mode:
authorterminaldweller <thabogre@gmail.com>2022-03-21 08:44:47 +0000
committerterminaldweller <thabogre@gmail.com>2022-03-21 08:44:47 +0000
commit9c6713a8cee48529eb11f7b16845eb6bd1e2a482 (patch)
tree784f86fe95e051703fe07225ea9015a21058a9d7 /spring-front/.eslintrc.js
parentdaily commit.wip (diff)
downloadmdrtl-9c6713a8cee48529eb11f7b16845eb6bd1e2a482.tar.gz
mdrtl-9c6713a8cee48529eb11f7b16845eb6bd1e2a482.zip
wip
Diffstat (limited to '')
-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": {
+ }
+}