matlab-proxy 0.15.0__tar.gz → 0.16.0__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.

Potentially problematic release.


This version of matlab-proxy might be problematic. Click here for more details.

Files changed (185) hide show
  1. {matlab-proxy-0.15.0/matlab_proxy.egg-info → matlab-proxy-0.16.0}/PKG-INFO +1 -1
  2. matlab-proxy-0.16.0/gui/.eslintrc.json +50 -0
  3. {matlab-proxy-0.15.0 → matlab-proxy-0.16.0}/gui/package-lock.json +1114 -138
  4. {matlab-proxy-0.15.0 → matlab-proxy-0.16.0}/gui/package.json +8 -3
  5. matlab-proxy-0.16.0/gui/src/actionCreators/actionCreators.spec.js +481 -0
  6. {matlab-proxy-0.15.0 → matlab-proxy-0.16.0}/gui/src/actionCreators/index.js +105 -119
  7. {matlab-proxy-0.15.0 → matlab-proxy-0.16.0}/gui/src/actions/index.js +1 -1
  8. matlab-proxy-0.16.0/gui/src/components/App/App.spec.js +249 -0
  9. {matlab-proxy-0.15.0 → matlab-proxy-0.16.0}/gui/src/components/App/index.js +63 -66
  10. matlab-proxy-0.16.0/gui/src/components/Confirmation/Confirmation.spec.js +100 -0
  11. {matlab-proxy-0.15.0 → matlab-proxy-0.16.0}/gui/src/components/Confirmation/index.js +5 -2
  12. matlab-proxy-0.16.0/gui/src/components/Controls/Controls.spec.js +107 -0
  13. {matlab-proxy-0.15.0 → matlab-proxy-0.16.0}/gui/src/components/Controls/index.js +35 -35
  14. matlab-proxy-0.16.0/gui/src/components/EntitlementSelector/EntitlementSelector.spec.js +91 -0
  15. matlab-proxy-0.16.0/gui/src/components/EntitlementSelector/index.js +78 -0
  16. matlab-proxy-0.16.0/gui/src/components/Error/Error.spec.js +48 -0
  17. {matlab-proxy-0.15.0 → matlab-proxy-0.16.0}/gui/src/components/Error/index.js +4 -5
  18. matlab-proxy-0.16.0/gui/src/components/Help/Help.spec.js +94 -0
  19. {matlab-proxy-0.15.0 → matlab-proxy-0.16.0}/gui/src/components/Help/index.js +8 -8
  20. matlab-proxy-0.16.0/gui/src/components/Information/Information.spec.js +174 -0
  21. matlab-proxy-0.16.0/gui/src/components/Information/index.js +246 -0
  22. {matlab-proxy-0.15.0 → matlab-proxy-0.16.0}/gui/src/components/LicensingGatherer/ExistingLicense.js +10 -11
  23. matlab-proxy-0.16.0/gui/src/components/LicensingGatherer/LicenseGatherer.spec.js +138 -0
  24. {matlab-proxy-0.15.0 → matlab-proxy-0.16.0}/gui/src/components/LicensingGatherer/MHLM.js +52 -51
  25. {matlab-proxy-0.15.0 → matlab-proxy-0.16.0}/gui/src/components/LicensingGatherer/NLM.js +19 -20
  26. {matlab-proxy-0.15.0 → matlab-proxy-0.16.0}/gui/src/components/LicensingGatherer/index.js +13 -14
  27. matlab-proxy-0.16.0/gui/src/components/MatlabJsd/MatlabJsd.spec.js +42 -0
  28. {matlab-proxy-0.15.0 → matlab-proxy-0.16.0}/gui/src/components/MatlabJsd/index.js +2 -2
  29. matlab-proxy-0.16.0/gui/src/components/Overlay/Overlay.spec.js +24 -0
  30. {matlab-proxy-0.15.0 → matlab-proxy-0.16.0}/gui/src/components/Overlay/index.js +5 -5
  31. matlab-proxy-0.16.0/gui/src/components/OverlayTrigger/OverlayTrigger.spec.js +80 -0
  32. matlab-proxy-0.16.0/gui/src/components/OverlayTrigger/ResizeOverlayTrigger.spec.js +85 -0
  33. {matlab-proxy-0.15.0 → matlab-proxy-0.16.0}/gui/src/components/OverlayTrigger/index.js +23 -22
  34. {matlab-proxy-0.15.0 → matlab-proxy-0.16.0}/gui/src/constants.js +2 -1
  35. {matlab-proxy-0.15.0 → matlab-proxy-0.16.0}/gui/src/index.js +3 -3
  36. {matlab-proxy-0.15.0 → matlab-proxy-0.16.0}/gui/src/reducers/index.js +71 -69
  37. matlab-proxy-0.16.0/gui/src/reducers/reducers.spec.js +412 -0
  38. {matlab-proxy-0.15.0 → matlab-proxy-0.16.0}/gui/src/selectors/index.js +16 -16
  39. matlab-proxy-0.16.0/gui/src/selectors/selectors.spec.js +387 -0
  40. {matlab-proxy-0.15.0 → matlab-proxy-0.16.0}/gui/src/serviceWorker.js +6 -6
  41. matlab-proxy-0.16.0/gui/src/test/utils/react-test.js +32 -0
  42. matlab-proxy-0.16.0/gui/src/test/utils/state.js +56 -0
  43. {matlab-proxy-0.15.0 → matlab-proxy-0.16.0}/matlab_proxy/app.py +13 -7
  44. {matlab-proxy-0.15.0 → matlab-proxy-0.16.0}/matlab_proxy/app_state.py +9 -6
  45. {matlab-proxy-0.15.0 → matlab-proxy-0.16.0}/matlab_proxy/constants.py +1 -0
  46. {matlab-proxy-0.15.0 → matlab-proxy-0.16.0}/matlab_proxy/settings.py +7 -4
  47. {matlab-proxy-0.15.0 → matlab-proxy-0.16.0}/matlab_proxy/util/__init__.py +8 -1
  48. {matlab-proxy-0.15.0 → matlab-proxy-0.16.0}/matlab_proxy/util/mwi/token_auth.py +19 -5
  49. {matlab-proxy-0.15.0 → matlab-proxy-0.16.0/matlab_proxy.egg-info}/PKG-INFO +1 -1
  50. {matlab-proxy-0.15.0 → matlab-proxy-0.16.0}/matlab_proxy.egg-info/SOURCES.txt +21 -0
  51. {matlab-proxy-0.15.0 → matlab-proxy-0.16.0}/matlab_proxy.egg-info/requires.txt +1 -0
  52. {matlab-proxy-0.15.0 → matlab-proxy-0.16.0}/setup.py +2 -1
  53. {matlab-proxy-0.15.0 → matlab-proxy-0.16.0}/tests/integration/integration_tests_with_license/test_http_end_points.py +4 -4
  54. {matlab-proxy-0.15.0 → matlab-proxy-0.16.0}/tests/integration/integration_tests_without_license/conftest.py +4 -3
  55. {matlab-proxy-0.15.0 → matlab-proxy-0.16.0}/tests/integration/integration_tests_without_license/test_matlab_is_down_if_unlicensed.py +3 -0
  56. matlab-proxy-0.16.0/tests/unit/__init__.py +1 -0
  57. matlab-proxy-0.16.0/tests/unit/conftest.py +67 -0
  58. matlab-proxy-0.16.0/tests/unit/test_app.py +1113 -0
  59. matlab-proxy-0.16.0/tests/unit/test_app_state.py +586 -0
  60. matlab-proxy-0.16.0/tests/unit/test_constants.py +6 -0
  61. matlab-proxy-0.16.0/tests/unit/test_ddux.py +22 -0
  62. matlab-proxy-0.16.0/tests/unit/test_devel.py +246 -0
  63. matlab-proxy-0.16.0/tests/unit/test_non_dev_mode.py +169 -0
  64. matlab-proxy-0.16.0/tests/unit/test_settings.py +460 -0
  65. matlab-proxy-0.16.0/tests/unit/util/__init__.py +3 -0
  66. matlab-proxy-0.16.0/tests/unit/util/mwi/__init__.py +1 -0
  67. matlab-proxy-0.16.0/tests/unit/util/mwi/embedded_connector/__init__.py +1 -0
  68. matlab-proxy-0.16.0/tests/unit/util/mwi/embedded_connector/test_helpers.py +29 -0
  69. matlab-proxy-0.16.0/tests/unit/util/mwi/embedded_connector/test_request.py +64 -0
  70. matlab-proxy-0.16.0/tests/unit/util/mwi/test_custom_http_headers.py +281 -0
  71. matlab-proxy-0.16.0/tests/unit/util/mwi/test_logger.py +49 -0
  72. matlab-proxy-0.16.0/tests/unit/util/mwi/test_token_auth.py +303 -0
  73. matlab-proxy-0.16.0/tests/unit/util/mwi/test_validators.py +331 -0
  74. matlab-proxy-0.16.0/tests/unit/util/test_mw.py +550 -0
  75. matlab-proxy-0.16.0/tests/unit/util/test_util.py +135 -0
  76. matlab-proxy-0.15.0/gui/src/actionCreators/actionCreators.spec.js +0 -492
  77. matlab-proxy-0.15.0/gui/src/components/App/App.spec.js +0 -249
  78. matlab-proxy-0.15.0/gui/src/components/Confirmation/Confirmation.spec.js +0 -102
  79. matlab-proxy-0.15.0/gui/src/components/Controls/Controls.spec.js +0 -108
  80. matlab-proxy-0.15.0/gui/src/components/EntitlementSelector/EntitlementSelector.spec.js +0 -94
  81. matlab-proxy-0.15.0/gui/src/components/EntitlementSelector/index.js +0 -75
  82. matlab-proxy-0.15.0/gui/src/components/Error/Error.spec.js +0 -48
  83. matlab-proxy-0.15.0/gui/src/components/Help/Help.spec.js +0 -94
  84. matlab-proxy-0.15.0/gui/src/components/Information/Information.spec.js +0 -177
  85. matlab-proxy-0.15.0/gui/src/components/Information/index.js +0 -240
  86. matlab-proxy-0.15.0/gui/src/components/LicensingGatherer/LicenseGatherer.spec.js +0 -143
  87. matlab-proxy-0.15.0/gui/src/components/MatlabJsd/MatlabJsd.spec.js +0 -42
  88. matlab-proxy-0.15.0/gui/src/components/Overlay/Overlay.spec.js +0 -24
  89. matlab-proxy-0.15.0/gui/src/components/OverlayTrigger/OverlayTrigger.spec.js +0 -80
  90. matlab-proxy-0.15.0/gui/src/components/OverlayTrigger/ResizeOverlayTrigger.spec.js +0 -85
  91. matlab-proxy-0.15.0/gui/src/reducers/reducers.spec.js +0 -425
  92. matlab-proxy-0.15.0/gui/src/selectors/selectors.spec.js +0 -398
  93. matlab-proxy-0.15.0/gui/src/test/utils/react-test.js +0 -29
  94. matlab-proxy-0.15.0/gui/src/test/utils/state.js +0 -56
  95. {matlab-proxy-0.15.0 → matlab-proxy-0.16.0}/LICENSE.md +0 -0
  96. {matlab-proxy-0.15.0 → matlab-proxy-0.16.0}/MANIFEST.in +0 -0
  97. {matlab-proxy-0.15.0 → matlab-proxy-0.16.0}/README.md +0 -0
  98. {matlab-proxy-0.15.0 → matlab-proxy-0.16.0}/gui/.gitignore +0 -0
  99. {matlab-proxy-0.15.0 → matlab-proxy-0.16.0}/gui/README.md +0 -0
  100. {matlab-proxy-0.15.0 → matlab-proxy-0.16.0}/gui/public/favicon.ico +0 -0
  101. {matlab-proxy-0.15.0 → matlab-proxy-0.16.0}/gui/public/index.html +0 -0
  102. {matlab-proxy-0.15.0 → matlab-proxy-0.16.0}/gui/public/manifest.json +0 -0
  103. {matlab-proxy-0.15.0 → matlab-proxy-0.16.0}/gui/public/robots.txt +0 -0
  104. {matlab-proxy-0.15.0 → matlab-proxy-0.16.0}/gui/src/components/App/3p/css/bootstrap.min.css +0 -0
  105. {matlab-proxy-0.15.0 → matlab-proxy-0.16.0}/gui/src/components/App/3p/css/site7.min.css +0 -0
  106. {matlab-proxy-0.15.0 → matlab-proxy-0.16.0}/gui/src/components/App/3p/fonts/glyphicons-halflings-regular.eot +0 -0
  107. {matlab-proxy-0.15.0 → matlab-proxy-0.16.0}/gui/src/components/App/3p/fonts/glyphicons-halflings-regular.svg +0 -0
  108. {matlab-proxy-0.15.0 → matlab-proxy-0.16.0}/gui/src/components/App/3p/fonts/glyphicons-halflings-regular.ttf +0 -0
  109. {matlab-proxy-0.15.0 → matlab-proxy-0.16.0}/gui/src/components/App/3p/fonts/glyphicons-halflings-regular.woff +0 -0
  110. {matlab-proxy-0.15.0 → matlab-proxy-0.16.0}/gui/src/components/App/3p/fonts/glyphicons-halflings-regular.woff2 +0 -0
  111. {matlab-proxy-0.15.0 → matlab-proxy-0.16.0}/gui/src/components/App/3p/fonts/mathworks-eps.svg +0 -0
  112. {matlab-proxy-0.15.0 → matlab-proxy-0.16.0}/gui/src/components/App/3p/fonts/mathworks-eps.ttf +0 -0
  113. {matlab-proxy-0.15.0 → matlab-proxy-0.16.0}/gui/src/components/App/3p/fonts/mathworks-eps.woff +0 -0
  114. {matlab-proxy-0.15.0 → matlab-proxy-0.16.0}/gui/src/components/App/3p/fonts/mathworks-pictograms.svg +0 -0
  115. {matlab-proxy-0.15.0 → matlab-proxy-0.16.0}/gui/src/components/App/3p/fonts/mathworks-pictograms.ttf +0 -0
  116. {matlab-proxy-0.15.0 → matlab-proxy-0.16.0}/gui/src/components/App/3p/fonts/mathworks-pictograms.woff +0 -0
  117. {matlab-proxy-0.15.0 → matlab-proxy-0.16.0}/gui/src/components/App/3p/fonts/mathworks.svg +0 -0
  118. {matlab-proxy-0.15.0 → matlab-proxy-0.16.0}/gui/src/components/App/3p/fonts/mathworks.ttf +0 -0
  119. {matlab-proxy-0.15.0 → matlab-proxy-0.16.0}/gui/src/components/App/3p/fonts/mathworks.woff +0 -0
  120. {matlab-proxy-0.15.0 → matlab-proxy-0.16.0}/gui/src/components/App/3p/images/bug_reports/workaround.gif +0 -0
  121. {matlab-proxy-0.15.0 → matlab-proxy-0.16.0}/gui/src/components/App/3p/images/responsive/global/ico-header-account-hover.svg +0 -0
  122. {matlab-proxy-0.15.0 → matlab-proxy-0.16.0}/gui/src/components/App/3p/images/responsive/global/ico-header-account.svg +0 -0
  123. {matlab-proxy-0.15.0 → matlab-proxy-0.16.0}/gui/src/components/App/3p/images/responsive/global/ico-header-contact-hover.svg +0 -0
  124. {matlab-proxy-0.15.0 → matlab-proxy-0.16.0}/gui/src/components/App/3p/images/responsive/global/ico-header-contact.svg +0 -0
  125. {matlab-proxy-0.15.0 → matlab-proxy-0.16.0}/gui/src/components/App/3p/images/responsive/global/ico-sprite.png +0 -0
  126. {matlab-proxy-0.15.0 → matlab-proxy-0.16.0}/gui/src/components/App/App.css +0 -0
  127. {matlab-proxy-0.15.0 → matlab-proxy-0.16.0}/gui/src/components/App/MATLAB-env-blur.png +0 -0
  128. {matlab-proxy-0.15.0 → matlab-proxy-0.16.0}/gui/src/components/Controls/Controls.css +0 -0
  129. {matlab-proxy-0.15.0 → matlab-proxy-0.16.0}/gui/src/components/Controls/feedback.svg +0 -0
  130. {matlab-proxy-0.15.0 → matlab-proxy-0.16.0}/gui/src/components/Controls/help.svg +0 -0
  131. {matlab-proxy-0.15.0 → matlab-proxy-0.16.0}/gui/src/components/Controls/restart.svg +0 -0
  132. {matlab-proxy-0.15.0 → matlab-proxy-0.16.0}/gui/src/components/Controls/sign-out.svg +0 -0
  133. {matlab-proxy-0.15.0 → matlab-proxy-0.16.0}/gui/src/components/Controls/start.svg +0 -0
  134. {matlab-proxy-0.15.0 → matlab-proxy-0.16.0}/gui/src/components/Controls/stop.svg +0 -0
  135. {matlab-proxy-0.15.0 → matlab-proxy-0.16.0}/gui/src/components/Controls/terminate.svg +0 -0
  136. {matlab-proxy-0.15.0 → matlab-proxy-0.16.0}/gui/src/components/Error/Error.css +0 -0
  137. {matlab-proxy-0.15.0 → matlab-proxy-0.16.0}/gui/src/components/Help/Help.css +0 -0
  138. {matlab-proxy-0.15.0 → matlab-proxy-0.16.0}/gui/src/components/Information/Information.css +0 -0
  139. {matlab-proxy-0.15.0 → matlab-proxy-0.16.0}/gui/src/components/LicensingGatherer/ExistingLicense.css +0 -0
  140. {matlab-proxy-0.15.0 → matlab-proxy-0.16.0}/gui/src/components/LicensingGatherer/LicensingGatherer.css +0 -0
  141. {matlab-proxy-0.15.0 → matlab-proxy-0.16.0}/gui/src/components/MatlabJsd/MatlabJsd.css +0 -0
  142. {matlab-proxy-0.15.0 → matlab-proxy-0.16.0}/gui/src/components/Overlay/Overlay.css +0 -0
  143. {matlab-proxy-0.15.0 → matlab-proxy-0.16.0}/gui/src/components/OverlayTrigger/OverlayTrigger.css +0 -0
  144. {matlab-proxy-0.15.0 → matlab-proxy-0.16.0}/gui/src/components/OverlayTrigger/arrow.svg +0 -0
  145. {matlab-proxy-0.15.0 → matlab-proxy-0.16.0}/gui/src/components/OverlayTrigger/gripper.svg +0 -0
  146. {matlab-proxy-0.15.0 → matlab-proxy-0.16.0}/gui/src/components/OverlayTrigger/trigger-error.svg +0 -0
  147. {matlab-proxy-0.15.0 → matlab-proxy-0.16.0}/gui/src/components/OverlayTrigger/trigger-ok.svg +0 -0
  148. {matlab-proxy-0.15.0 → matlab-proxy-0.16.0}/gui/src/index.css +0 -0
  149. {matlab-proxy-0.15.0 → matlab-proxy-0.16.0}/gui/src/jest.config.json +0 -0
  150. {matlab-proxy-0.15.0 → matlab-proxy-0.16.0}/gui/src/logo.svg +0 -0
  151. {matlab-proxy-0.15.0 → matlab-proxy-0.16.0}/gui/src/setupTests.js +0 -0
  152. {matlab-proxy-0.15.0 → matlab-proxy-0.16.0}/matlab_proxy/__init__.py +0 -0
  153. {matlab-proxy-0.15.0 → matlab-proxy-0.16.0}/matlab_proxy/default_configuration.py +0 -0
  154. {matlab-proxy-0.15.0 → matlab-proxy-0.16.0}/matlab_proxy/devel.py +0 -0
  155. {matlab-proxy-0.15.0 → matlab-proxy-0.16.0}/matlab_proxy/icons/matlab.svg +0 -0
  156. {matlab-proxy-0.15.0 → matlab-proxy-0.16.0}/matlab_proxy/matlab/startup.m +0 -0
  157. {matlab-proxy-0.15.0 → matlab-proxy-0.16.0}/matlab_proxy/util/event_loop.py +0 -0
  158. {matlab-proxy-0.15.0 → matlab-proxy-0.16.0}/matlab_proxy/util/list_servers.py +0 -0
  159. {matlab-proxy-0.15.0 → matlab-proxy-0.16.0}/matlab_proxy/util/mw.py +0 -0
  160. {matlab-proxy-0.15.0 → matlab-proxy-0.16.0}/matlab_proxy/util/mwi/__init__.py +0 -0
  161. {matlab-proxy-0.15.0 → matlab-proxy-0.16.0}/matlab_proxy/util/mwi/custom_http_headers.py +0 -0
  162. {matlab-proxy-0.15.0 → matlab-proxy-0.16.0}/matlab_proxy/util/mwi/download.py +0 -0
  163. {matlab-proxy-0.15.0 → matlab-proxy-0.16.0}/matlab_proxy/util/mwi/embedded_connector/__init__.py +0 -0
  164. {matlab-proxy-0.15.0 → matlab-proxy-0.16.0}/matlab_proxy/util/mwi/embedded_connector/helpers.py +0 -0
  165. {matlab-proxy-0.15.0 → matlab-proxy-0.16.0}/matlab_proxy/util/mwi/embedded_connector/request.py +0 -0
  166. {matlab-proxy-0.15.0 → matlab-proxy-0.16.0}/matlab_proxy/util/mwi/environment_variables.py +0 -0
  167. {matlab-proxy-0.15.0 → matlab-proxy-0.16.0}/matlab_proxy/util/mwi/exceptions.py +0 -0
  168. {matlab-proxy-0.15.0 → matlab-proxy-0.16.0}/matlab_proxy/util/mwi/logger.py +0 -0
  169. {matlab-proxy-0.15.0 → matlab-proxy-0.16.0}/matlab_proxy/util/mwi/validators.py +0 -0
  170. {matlab-proxy-0.15.0 → matlab-proxy-0.16.0}/matlab_proxy/util/system.py +0 -0
  171. {matlab-proxy-0.15.0 → matlab-proxy-0.16.0}/matlab_proxy/util/windows.py +0 -0
  172. {matlab-proxy-0.15.0 → matlab-proxy-0.16.0}/matlab_proxy.egg-info/dependency_links.txt +0 -0
  173. {matlab-proxy-0.15.0 → matlab-proxy-0.16.0}/matlab_proxy.egg-info/entry_points.txt +0 -0
  174. {matlab-proxy-0.15.0 → matlab-proxy-0.16.0}/matlab_proxy.egg-info/not-zip-safe +0 -0
  175. {matlab-proxy-0.15.0 → matlab-proxy-0.16.0}/matlab_proxy.egg-info/top_level.txt +0 -0
  176. {matlab-proxy-0.15.0 → matlab-proxy-0.16.0}/setup.cfg +0 -0
  177. {matlab-proxy-0.15.0 → matlab-proxy-0.16.0}/tests/integration/__init__.py +0 -0
  178. {matlab-proxy-0.15.0 → matlab-proxy-0.16.0}/tests/integration/integration_tests_with_license/__init__.py +0 -0
  179. {matlab-proxy-0.15.0 → matlab-proxy-0.16.0}/tests/integration/integration_tests_with_license/conftest.py +0 -0
  180. {matlab-proxy-0.15.0 → matlab-proxy-0.16.0}/tests/integration/integration_tests_without_license/__init__.py +0 -0
  181. {matlab-proxy-0.15.0 → matlab-proxy-0.16.0}/tests/integration/utils/__init__.py +0 -0
  182. {matlab-proxy-0.15.0 → matlab-proxy-0.16.0}/tests/integration/utils/integration_tests_utils.py +0 -0
  183. {matlab-proxy-0.15.0 → matlab-proxy-0.16.0}/tests/integration/utils/licensing.py +0 -0
  184. {matlab-proxy-0.15.0 → matlab-proxy-0.16.0}/tests/utils/__init__.py +0 -0
  185. {matlab-proxy-0.15.0 → matlab-proxy-0.16.0}/tests/utils/logging_util.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: matlab-proxy
3
- Version: 0.15.0
3
+ Version: 0.16.0
4
4
  Summary: Python® package enables you to launch MATLAB® and access it from a web browser.
5
5
  Home-page: https://github.com/mathworks/matlab-proxy/
6
6
  Author: The MathWorks, Inc.
@@ -0,0 +1,50 @@
1
+ {
2
+ "extends": [
3
+ "standard",
4
+ "plugin:react/recommended"
5
+ ],
6
+ "plugins": [
7
+ "react",
8
+ "jest",
9
+ "testing-library"
10
+ ],
11
+ "env": {
12
+ "jest/globals": true,
13
+ "browser": true
14
+ },
15
+ "rules": {
16
+ "indent": ["error", 4, {"SwitchCase": 1}],
17
+ "semi": ["error", "always"],
18
+ "no-extra-semi": "error",
19
+ "quote-props": "warn",
20
+ "dot-notation": "warn",
21
+ "object-curly-newline": "warn",
22
+ "multiline-ternary": "warn",
23
+ "prefer-const": "warn",
24
+ "no-prototype-builtins": "warn",
25
+ "array-callback-return": "warn",
26
+ "array-bracket-spacing": "warn",
27
+ "quotes": "warn",
28
+ "lines-between-class-members": "warn",
29
+ "no-empty": "warn",
30
+ "prefer-regex-literals": "warn",
31
+ "n/no-callback-literal": "warn",
32
+ "no-useless-catch": "warn",
33
+ "n/handle-callback-err": "warn",
34
+ "no-case-declarations": "warn",
35
+ "computed-property-spacing": "warn",
36
+ "no-async-promise-executor": "warn",
37
+ "no-unused-vars": "warn",
38
+ "n/no-deprecated-api": "warn",
39
+ "no-unreachable-loop": "warn",
40
+ "no-void": "warn"
41
+ },
42
+ "ignorePatterns": ["build/**"],
43
+ "settings": {
44
+ "react": {
45
+ "version": "detect"
46
+ }
47
+ }
48
+ }
49
+
50
+