Browse Source

fix(推流广告): 修改方案

曾志翔 3 years ago
parent
commit
0fbcfe1211
4 changed files with 1202 additions and 1029 deletions
  1. 13 0
      .editorconfig
  2. 11 0
      .eslintrc.js
  3. 5 0
      .prettierrc
  4. 1173 1029
      screenIos/WXtrialInterface.html

+ 13 - 0
.editorconfig

@@ -0,0 +1,13 @@
+# editorconfig.org
+root = true
+
+[*]
+indent_style = space
+indent_size = 2
+end_of_line = lf
+charset = utf-8
+trim_trailing_whitespace = true
+insert_final_newline = true
+
+[*.md]
+trim_trailing_whitespace = false

+ 11 - 0
.eslintrc.js

@@ -0,0 +1,11 @@
+module.exports = {
+  root: true,
+  env: {
+    browser: true,
+    node: true,
+  },
+  extends: ['plugin:prettier/recommended'],
+  plugins: [],
+  // add your custom rules here
+  rules: {},
+};

+ 5 - 0
.prettierrc

@@ -0,0 +1,5 @@
+{
+  "semi": true,
+  "singleQuote": true,
+  "trailingComma": "all"
+}

File diff suppressed because it is too large
+ 1173 - 1029
screenIos/WXtrialInterface.html