matlab-proxy 0.15.0__tar.gz → 0.15.1__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.
- {matlab-proxy-0.15.0/matlab_proxy.egg-info → matlab-proxy-0.15.1}/PKG-INFO +1 -1
- matlab-proxy-0.15.1/gui/.eslintrc.json +50 -0
- {matlab-proxy-0.15.0 → matlab-proxy-0.15.1}/gui/package-lock.json +1114 -138
- {matlab-proxy-0.15.0 → matlab-proxy-0.15.1}/gui/package.json +8 -3
- matlab-proxy-0.15.1/gui/src/actionCreators/actionCreators.spec.js +481 -0
- {matlab-proxy-0.15.0 → matlab-proxy-0.15.1}/gui/src/actionCreators/index.js +104 -119
- {matlab-proxy-0.15.0 → matlab-proxy-0.15.1}/gui/src/actions/index.js +1 -1
- matlab-proxy-0.15.1/gui/src/components/App/App.spec.js +248 -0
- {matlab-proxy-0.15.0 → matlab-proxy-0.15.1}/gui/src/components/App/index.js +61 -65
- matlab-proxy-0.15.1/gui/src/components/Confirmation/Confirmation.spec.js +100 -0
- {matlab-proxy-0.15.0 → matlab-proxy-0.15.1}/gui/src/components/Confirmation/index.js +5 -2
- matlab-proxy-0.15.1/gui/src/components/Controls/Controls.spec.js +107 -0
- {matlab-proxy-0.15.0 → matlab-proxy-0.15.1}/gui/src/components/Controls/index.js +35 -35
- matlab-proxy-0.15.1/gui/src/components/EntitlementSelector/EntitlementSelector.spec.js +91 -0
- matlab-proxy-0.15.1/gui/src/components/EntitlementSelector/index.js +78 -0
- matlab-proxy-0.15.1/gui/src/components/Error/Error.spec.js +48 -0
- {matlab-proxy-0.15.0 → matlab-proxy-0.15.1}/gui/src/components/Error/index.js +4 -5
- matlab-proxy-0.15.1/gui/src/components/Help/Help.spec.js +94 -0
- {matlab-proxy-0.15.0 → matlab-proxy-0.15.1}/gui/src/components/Help/index.js +8 -8
- matlab-proxy-0.15.1/gui/src/components/Information/Information.spec.js +174 -0
- matlab-proxy-0.15.1/gui/src/components/Information/index.js +246 -0
- {matlab-proxy-0.15.0 → matlab-proxy-0.15.1}/gui/src/components/LicensingGatherer/ExistingLicense.js +10 -11
- matlab-proxy-0.15.1/gui/src/components/LicensingGatherer/LicenseGatherer.spec.js +138 -0
- {matlab-proxy-0.15.0 → matlab-proxy-0.15.1}/gui/src/components/LicensingGatherer/MHLM.js +52 -51
- {matlab-proxy-0.15.0 → matlab-proxy-0.15.1}/gui/src/components/LicensingGatherer/NLM.js +19 -20
- {matlab-proxy-0.15.0 → matlab-proxy-0.15.1}/gui/src/components/LicensingGatherer/index.js +13 -14
- matlab-proxy-0.15.1/gui/src/components/MatlabJsd/MatlabJsd.spec.js +42 -0
- {matlab-proxy-0.15.0 → matlab-proxy-0.15.1}/gui/src/components/MatlabJsd/index.js +2 -2
- matlab-proxy-0.15.1/gui/src/components/Overlay/Overlay.spec.js +24 -0
- {matlab-proxy-0.15.0 → matlab-proxy-0.15.1}/gui/src/components/Overlay/index.js +5 -5
- matlab-proxy-0.15.1/gui/src/components/OverlayTrigger/OverlayTrigger.spec.js +80 -0
- matlab-proxy-0.15.1/gui/src/components/OverlayTrigger/ResizeOverlayTrigger.spec.js +85 -0
- {matlab-proxy-0.15.0 → matlab-proxy-0.15.1}/gui/src/components/OverlayTrigger/index.js +23 -22
- {matlab-proxy-0.15.0 → matlab-proxy-0.15.1}/gui/src/constants.js +1 -1
- {matlab-proxy-0.15.0 → matlab-proxy-0.15.1}/gui/src/index.js +3 -3
- {matlab-proxy-0.15.0 → matlab-proxy-0.15.1}/gui/src/reducers/index.js +71 -69
- matlab-proxy-0.15.1/gui/src/reducers/reducers.spec.js +412 -0
- {matlab-proxy-0.15.0 → matlab-proxy-0.15.1}/gui/src/selectors/index.js +16 -16
- matlab-proxy-0.15.1/gui/src/selectors/selectors.spec.js +387 -0
- {matlab-proxy-0.15.0 → matlab-proxy-0.15.1}/gui/src/serviceWorker.js +6 -6
- matlab-proxy-0.15.1/gui/src/test/utils/react-test.js +32 -0
- matlab-proxy-0.15.1/gui/src/test/utils/state.js +56 -0
- {matlab-proxy-0.15.0 → matlab-proxy-0.15.1}/matlab_proxy/app.py +13 -7
- {matlab-proxy-0.15.0 → matlab-proxy-0.15.1}/matlab_proxy/util/__init__.py +8 -1
- {matlab-proxy-0.15.0 → matlab-proxy-0.15.1/matlab_proxy.egg-info}/PKG-INFO +1 -1
- {matlab-proxy-0.15.0 → matlab-proxy-0.15.1}/matlab_proxy.egg-info/SOURCES.txt +21 -0
- {matlab-proxy-0.15.0 → matlab-proxy-0.15.1}/matlab_proxy.egg-info/requires.txt +1 -0
- {matlab-proxy-0.15.0 → matlab-proxy-0.15.1}/setup.py +2 -1
- {matlab-proxy-0.15.0 → matlab-proxy-0.15.1}/tests/integration/integration_tests_without_license/test_matlab_is_down_if_unlicensed.py +3 -0
- matlab-proxy-0.15.1/tests/unit/__init__.py +1 -0
- matlab-proxy-0.15.1/tests/unit/conftest.py +67 -0
- matlab-proxy-0.15.1/tests/unit/test_app.py +1113 -0
- matlab-proxy-0.15.1/tests/unit/test_app_state.py +582 -0
- matlab-proxy-0.15.1/tests/unit/test_constants.py +5 -0
- matlab-proxy-0.15.1/tests/unit/test_ddux.py +22 -0
- matlab-proxy-0.15.1/tests/unit/test_devel.py +246 -0
- matlab-proxy-0.15.1/tests/unit/test_non_dev_mode.py +169 -0
- matlab-proxy-0.15.1/tests/unit/test_settings.py +460 -0
- matlab-proxy-0.15.1/tests/unit/util/__init__.py +3 -0
- matlab-proxy-0.15.1/tests/unit/util/mwi/__init__.py +1 -0
- matlab-proxy-0.15.1/tests/unit/util/mwi/embedded_connector/__init__.py +1 -0
- matlab-proxy-0.15.1/tests/unit/util/mwi/embedded_connector/test_helpers.py +29 -0
- matlab-proxy-0.15.1/tests/unit/util/mwi/embedded_connector/test_request.py +64 -0
- matlab-proxy-0.15.1/tests/unit/util/mwi/test_custom_http_headers.py +281 -0
- matlab-proxy-0.15.1/tests/unit/util/mwi/test_logger.py +49 -0
- matlab-proxy-0.15.1/tests/unit/util/mwi/test_token_auth.py +289 -0
- matlab-proxy-0.15.1/tests/unit/util/mwi/test_validators.py +331 -0
- matlab-proxy-0.15.1/tests/unit/util/test_mw.py +550 -0
- matlab-proxy-0.15.1/tests/unit/util/test_util.py +135 -0
- matlab-proxy-0.15.0/gui/src/actionCreators/actionCreators.spec.js +0 -492
- matlab-proxy-0.15.0/gui/src/components/App/App.spec.js +0 -249
- matlab-proxy-0.15.0/gui/src/components/Confirmation/Confirmation.spec.js +0 -102
- matlab-proxy-0.15.0/gui/src/components/Controls/Controls.spec.js +0 -108
- matlab-proxy-0.15.0/gui/src/components/EntitlementSelector/EntitlementSelector.spec.js +0 -94
- matlab-proxy-0.15.0/gui/src/components/EntitlementSelector/index.js +0 -75
- matlab-proxy-0.15.0/gui/src/components/Error/Error.spec.js +0 -48
- matlab-proxy-0.15.0/gui/src/components/Help/Help.spec.js +0 -94
- matlab-proxy-0.15.0/gui/src/components/Information/Information.spec.js +0 -177
- matlab-proxy-0.15.0/gui/src/components/Information/index.js +0 -240
- matlab-proxy-0.15.0/gui/src/components/LicensingGatherer/LicenseGatherer.spec.js +0 -143
- matlab-proxy-0.15.0/gui/src/components/MatlabJsd/MatlabJsd.spec.js +0 -42
- matlab-proxy-0.15.0/gui/src/components/Overlay/Overlay.spec.js +0 -24
- matlab-proxy-0.15.0/gui/src/components/OverlayTrigger/OverlayTrigger.spec.js +0 -80
- matlab-proxy-0.15.0/gui/src/components/OverlayTrigger/ResizeOverlayTrigger.spec.js +0 -85
- matlab-proxy-0.15.0/gui/src/reducers/reducers.spec.js +0 -425
- matlab-proxy-0.15.0/gui/src/selectors/selectors.spec.js +0 -398
- matlab-proxy-0.15.0/gui/src/test/utils/react-test.js +0 -29
- matlab-proxy-0.15.0/gui/src/test/utils/state.js +0 -56
- {matlab-proxy-0.15.0 → matlab-proxy-0.15.1}/LICENSE.md +0 -0
- {matlab-proxy-0.15.0 → matlab-proxy-0.15.1}/MANIFEST.in +0 -0
- {matlab-proxy-0.15.0 → matlab-proxy-0.15.1}/README.md +0 -0
- {matlab-proxy-0.15.0 → matlab-proxy-0.15.1}/gui/.gitignore +0 -0
- {matlab-proxy-0.15.0 → matlab-proxy-0.15.1}/gui/README.md +0 -0
- {matlab-proxy-0.15.0 → matlab-proxy-0.15.1}/gui/public/favicon.ico +0 -0
- {matlab-proxy-0.15.0 → matlab-proxy-0.15.1}/gui/public/index.html +0 -0
- {matlab-proxy-0.15.0 → matlab-proxy-0.15.1}/gui/public/manifest.json +0 -0
- {matlab-proxy-0.15.0 → matlab-proxy-0.15.1}/gui/public/robots.txt +0 -0
- {matlab-proxy-0.15.0 → matlab-proxy-0.15.1}/gui/src/components/App/3p/css/bootstrap.min.css +0 -0
- {matlab-proxy-0.15.0 → matlab-proxy-0.15.1}/gui/src/components/App/3p/css/site7.min.css +0 -0
- {matlab-proxy-0.15.0 → matlab-proxy-0.15.1}/gui/src/components/App/3p/fonts/glyphicons-halflings-regular.eot +0 -0
- {matlab-proxy-0.15.0 → matlab-proxy-0.15.1}/gui/src/components/App/3p/fonts/glyphicons-halflings-regular.svg +0 -0
- {matlab-proxy-0.15.0 → matlab-proxy-0.15.1}/gui/src/components/App/3p/fonts/glyphicons-halflings-regular.ttf +0 -0
- {matlab-proxy-0.15.0 → matlab-proxy-0.15.1}/gui/src/components/App/3p/fonts/glyphicons-halflings-regular.woff +0 -0
- {matlab-proxy-0.15.0 → matlab-proxy-0.15.1}/gui/src/components/App/3p/fonts/glyphicons-halflings-regular.woff2 +0 -0
- {matlab-proxy-0.15.0 → matlab-proxy-0.15.1}/gui/src/components/App/3p/fonts/mathworks-eps.svg +0 -0
- {matlab-proxy-0.15.0 → matlab-proxy-0.15.1}/gui/src/components/App/3p/fonts/mathworks-eps.ttf +0 -0
- {matlab-proxy-0.15.0 → matlab-proxy-0.15.1}/gui/src/components/App/3p/fonts/mathworks-eps.woff +0 -0
- {matlab-proxy-0.15.0 → matlab-proxy-0.15.1}/gui/src/components/App/3p/fonts/mathworks-pictograms.svg +0 -0
- {matlab-proxy-0.15.0 → matlab-proxy-0.15.1}/gui/src/components/App/3p/fonts/mathworks-pictograms.ttf +0 -0
- {matlab-proxy-0.15.0 → matlab-proxy-0.15.1}/gui/src/components/App/3p/fonts/mathworks-pictograms.woff +0 -0
- {matlab-proxy-0.15.0 → matlab-proxy-0.15.1}/gui/src/components/App/3p/fonts/mathworks.svg +0 -0
- {matlab-proxy-0.15.0 → matlab-proxy-0.15.1}/gui/src/components/App/3p/fonts/mathworks.ttf +0 -0
- {matlab-proxy-0.15.0 → matlab-proxy-0.15.1}/gui/src/components/App/3p/fonts/mathworks.woff +0 -0
- {matlab-proxy-0.15.0 → matlab-proxy-0.15.1}/gui/src/components/App/3p/images/bug_reports/workaround.gif +0 -0
- {matlab-proxy-0.15.0 → matlab-proxy-0.15.1}/gui/src/components/App/3p/images/responsive/global/ico-header-account-hover.svg +0 -0
- {matlab-proxy-0.15.0 → matlab-proxy-0.15.1}/gui/src/components/App/3p/images/responsive/global/ico-header-account.svg +0 -0
- {matlab-proxy-0.15.0 → matlab-proxy-0.15.1}/gui/src/components/App/3p/images/responsive/global/ico-header-contact-hover.svg +0 -0
- {matlab-proxy-0.15.0 → matlab-proxy-0.15.1}/gui/src/components/App/3p/images/responsive/global/ico-header-contact.svg +0 -0
- {matlab-proxy-0.15.0 → matlab-proxy-0.15.1}/gui/src/components/App/3p/images/responsive/global/ico-sprite.png +0 -0
- {matlab-proxy-0.15.0 → matlab-proxy-0.15.1}/gui/src/components/App/App.css +0 -0
- {matlab-proxy-0.15.0 → matlab-proxy-0.15.1}/gui/src/components/App/MATLAB-env-blur.png +0 -0
- {matlab-proxy-0.15.0 → matlab-proxy-0.15.1}/gui/src/components/Controls/Controls.css +0 -0
- {matlab-proxy-0.15.0 → matlab-proxy-0.15.1}/gui/src/components/Controls/feedback.svg +0 -0
- {matlab-proxy-0.15.0 → matlab-proxy-0.15.1}/gui/src/components/Controls/help.svg +0 -0
- {matlab-proxy-0.15.0 → matlab-proxy-0.15.1}/gui/src/components/Controls/restart.svg +0 -0
- {matlab-proxy-0.15.0 → matlab-proxy-0.15.1}/gui/src/components/Controls/sign-out.svg +0 -0
- {matlab-proxy-0.15.0 → matlab-proxy-0.15.1}/gui/src/components/Controls/start.svg +0 -0
- {matlab-proxy-0.15.0 → matlab-proxy-0.15.1}/gui/src/components/Controls/stop.svg +0 -0
- {matlab-proxy-0.15.0 → matlab-proxy-0.15.1}/gui/src/components/Controls/terminate.svg +0 -0
- {matlab-proxy-0.15.0 → matlab-proxy-0.15.1}/gui/src/components/Error/Error.css +0 -0
- {matlab-proxy-0.15.0 → matlab-proxy-0.15.1}/gui/src/components/Help/Help.css +0 -0
- {matlab-proxy-0.15.0 → matlab-proxy-0.15.1}/gui/src/components/Information/Information.css +0 -0
- {matlab-proxy-0.15.0 → matlab-proxy-0.15.1}/gui/src/components/LicensingGatherer/ExistingLicense.css +0 -0
- {matlab-proxy-0.15.0 → matlab-proxy-0.15.1}/gui/src/components/LicensingGatherer/LicensingGatherer.css +0 -0
- {matlab-proxy-0.15.0 → matlab-proxy-0.15.1}/gui/src/components/MatlabJsd/MatlabJsd.css +0 -0
- {matlab-proxy-0.15.0 → matlab-proxy-0.15.1}/gui/src/components/Overlay/Overlay.css +0 -0
- {matlab-proxy-0.15.0 → matlab-proxy-0.15.1}/gui/src/components/OverlayTrigger/OverlayTrigger.css +0 -0
- {matlab-proxy-0.15.0 → matlab-proxy-0.15.1}/gui/src/components/OverlayTrigger/arrow.svg +0 -0
- {matlab-proxy-0.15.0 → matlab-proxy-0.15.1}/gui/src/components/OverlayTrigger/gripper.svg +0 -0
- {matlab-proxy-0.15.0 → matlab-proxy-0.15.1}/gui/src/components/OverlayTrigger/trigger-error.svg +0 -0
- {matlab-proxy-0.15.0 → matlab-proxy-0.15.1}/gui/src/components/OverlayTrigger/trigger-ok.svg +0 -0
- {matlab-proxy-0.15.0 → matlab-proxy-0.15.1}/gui/src/index.css +0 -0
- {matlab-proxy-0.15.0 → matlab-proxy-0.15.1}/gui/src/jest.config.json +0 -0
- {matlab-proxy-0.15.0 → matlab-proxy-0.15.1}/gui/src/logo.svg +0 -0
- {matlab-proxy-0.15.0 → matlab-proxy-0.15.1}/gui/src/setupTests.js +0 -0
- {matlab-proxy-0.15.0 → matlab-proxy-0.15.1}/matlab_proxy/__init__.py +0 -0
- {matlab-proxy-0.15.0 → matlab-proxy-0.15.1}/matlab_proxy/app_state.py +0 -0
- {matlab-proxy-0.15.0 → matlab-proxy-0.15.1}/matlab_proxy/constants.py +0 -0
- {matlab-proxy-0.15.0 → matlab-proxy-0.15.1}/matlab_proxy/default_configuration.py +0 -0
- {matlab-proxy-0.15.0 → matlab-proxy-0.15.1}/matlab_proxy/devel.py +0 -0
- {matlab-proxy-0.15.0 → matlab-proxy-0.15.1}/matlab_proxy/icons/matlab.svg +0 -0
- {matlab-proxy-0.15.0 → matlab-proxy-0.15.1}/matlab_proxy/matlab/startup.m +0 -0
- {matlab-proxy-0.15.0 → matlab-proxy-0.15.1}/matlab_proxy/settings.py +0 -0
- {matlab-proxy-0.15.0 → matlab-proxy-0.15.1}/matlab_proxy/util/event_loop.py +0 -0
- {matlab-proxy-0.15.0 → matlab-proxy-0.15.1}/matlab_proxy/util/list_servers.py +0 -0
- {matlab-proxy-0.15.0 → matlab-proxy-0.15.1}/matlab_proxy/util/mw.py +0 -0
- {matlab-proxy-0.15.0 → matlab-proxy-0.15.1}/matlab_proxy/util/mwi/__init__.py +0 -0
- {matlab-proxy-0.15.0 → matlab-proxy-0.15.1}/matlab_proxy/util/mwi/custom_http_headers.py +0 -0
- {matlab-proxy-0.15.0 → matlab-proxy-0.15.1}/matlab_proxy/util/mwi/download.py +0 -0
- {matlab-proxy-0.15.0 → matlab-proxy-0.15.1}/matlab_proxy/util/mwi/embedded_connector/__init__.py +0 -0
- {matlab-proxy-0.15.0 → matlab-proxy-0.15.1}/matlab_proxy/util/mwi/embedded_connector/helpers.py +0 -0
- {matlab-proxy-0.15.0 → matlab-proxy-0.15.1}/matlab_proxy/util/mwi/embedded_connector/request.py +0 -0
- {matlab-proxy-0.15.0 → matlab-proxy-0.15.1}/matlab_proxy/util/mwi/environment_variables.py +0 -0
- {matlab-proxy-0.15.0 → matlab-proxy-0.15.1}/matlab_proxy/util/mwi/exceptions.py +0 -0
- {matlab-proxy-0.15.0 → matlab-proxy-0.15.1}/matlab_proxy/util/mwi/logger.py +0 -0
- {matlab-proxy-0.15.0 → matlab-proxy-0.15.1}/matlab_proxy/util/mwi/token_auth.py +0 -0
- {matlab-proxy-0.15.0 → matlab-proxy-0.15.1}/matlab_proxy/util/mwi/validators.py +0 -0
- {matlab-proxy-0.15.0 → matlab-proxy-0.15.1}/matlab_proxy/util/system.py +0 -0
- {matlab-proxy-0.15.0 → matlab-proxy-0.15.1}/matlab_proxy/util/windows.py +0 -0
- {matlab-proxy-0.15.0 → matlab-proxy-0.15.1}/matlab_proxy.egg-info/dependency_links.txt +0 -0
- {matlab-proxy-0.15.0 → matlab-proxy-0.15.1}/matlab_proxy.egg-info/entry_points.txt +0 -0
- {matlab-proxy-0.15.0 → matlab-proxy-0.15.1}/matlab_proxy.egg-info/not-zip-safe +0 -0
- {matlab-proxy-0.15.0 → matlab-proxy-0.15.1}/matlab_proxy.egg-info/top_level.txt +0 -0
- {matlab-proxy-0.15.0 → matlab-proxy-0.15.1}/setup.cfg +0 -0
- {matlab-proxy-0.15.0 → matlab-proxy-0.15.1}/tests/integration/__init__.py +0 -0
- {matlab-proxy-0.15.0 → matlab-proxy-0.15.1}/tests/integration/integration_tests_with_license/__init__.py +0 -0
- {matlab-proxy-0.15.0 → matlab-proxy-0.15.1}/tests/integration/integration_tests_with_license/conftest.py +0 -0
- {matlab-proxy-0.15.0 → matlab-proxy-0.15.1}/tests/integration/integration_tests_with_license/test_http_end_points.py +0 -0
- {matlab-proxy-0.15.0 → matlab-proxy-0.15.1}/tests/integration/integration_tests_without_license/__init__.py +0 -0
- {matlab-proxy-0.15.0 → matlab-proxy-0.15.1}/tests/integration/integration_tests_without_license/conftest.py +0 -0
- {matlab-proxy-0.15.0 → matlab-proxy-0.15.1}/tests/integration/utils/__init__.py +0 -0
- {matlab-proxy-0.15.0 → matlab-proxy-0.15.1}/tests/integration/utils/integration_tests_utils.py +0 -0
- {matlab-proxy-0.15.0 → matlab-proxy-0.15.1}/tests/integration/utils/licensing.py +0 -0
- {matlab-proxy-0.15.0 → matlab-proxy-0.15.1}/tests/utils/__init__.py +0 -0
- {matlab-proxy-0.15.0 → matlab-proxy-0.15.1}/tests/utils/logging_util.py +0 -0
|
@@ -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
|
+
|