andrew 4 lat temu
rodzic
commit
f46a9b6aca

+ 16
- 0
estateagents-admin-manager/.editorconfig Wyświetl plik

@@ -0,0 +1,16 @@
1
+# http://editorconfig.org
2
+root = true
3
+
4
+[*]
5
+indent_style = space
6
+indent_size = 2
7
+end_of_line = lf
8
+charset = utf-8
9
+trim_trailing_whitespace = true
10
+insert_final_newline = true
11
+
12
+[*.md]
13
+trim_trailing_whitespace = false
14
+
15
+[Makefile]
16
+indent_style = tab

+ 3
- 0
estateagents-admin-manager/.eslintignore Wyświetl plik

@@ -0,0 +1,3 @@
1
+/lambda/
2
+/scripts
3
+/config

+ 10
- 0
estateagents-admin-manager/.eslintrc.js Wyświetl plik

@@ -0,0 +1,10 @@
1
+const { strictEslint } = require('@umijs/fabric');
2
+
3
+module.exports = {
4
+  ...strictEslint,
5
+  globals: {
6
+    ANT_DESIGN_PRO_ONLY_DO_NOT_USE_IN_YOUR_PRODUCTION: true,
7
+    page: true,
8
+    AMap: true,
9
+  },
10
+};