requestly/.eslintrc.js

28 lines
499 B
JavaScript
Raw Normal View History

2023-02-20 18:22:59 +05:30
module.exports = {
globals: {
NodeJS: true,
},
2023-02-20 18:22:59 +05:30
ignorePatterns: [
"node_modules",
"app/build/*",
"app/public/**",
"browser-extension/*",
#600: Add API Client (#583) * RQ-216 API Client - basic UI * RQ-216 Bypass CORS issue by triggering request from extension * RQ-216 Handle failed API request * RQ-216 Response headers, status line and Test mock * RQ-216 History of api requests * RQ-216 Cache history in local storage, limit to 20 events * RQ-216 CSS fixes * RQ-216 Fixed bug where old response preview was not cleared * RQ-216 Support for request body - raw and json * RQ-216 Support form data in request body * RQ-216 Import request from curl * RQ-216 Fixed button styles * RQ-216 HTML Response preview plus code fixes * RQ-216 Image Response preview | also fixes curl parsing * RQ-216 Fixed background-color for HTML preview iframe * RQ-216 Parse URL in curl request when passed with url arg * RQ-216 JSON response preview after removing padded characters in JSON * RQ-216 Show count in api request tabs * RQ-216 Show count in api request tabs - fixing styles * RQ-216 Restructure styles file * RQ-216 Auto-complete on header name * RQ-216 Add favicon for URLs * RQ-216 Ability to manually cancel the long pending request * RQ-216 Omit cookies to be sent in request * RQ-216 Prevent navigation in HTML preview * RQ-216 fixed split pane minsize issue * RQ-216 Prepare APIClient for integration * RQ-216 Fixes in Test mock api * RQ-216 restructured API client * RQ-216 bug fixes * RQ-216 Renamed APIsView to APIClientContainer * RQ-216 Renamed folder | also updated starter URL * RQ-216 API client - Analytics events * RQ-216 API Client - support in desktop app * RQ-216 remove fetch options * RQ-216 bug fixes * RQ-216 Refactored Import request dialog * RQ-216 Moved favicon to separate component * RQ-216 Bug fixes in curl import * RQ-216 Bug fix * RQ-216 API Client - feature compatibility check (#589) * RQ-216 Disable API client for extension till next release * RQ-260 Replay Request Support in Desktop App (#599) * RQ-260 Move replay request behind feature flag
2023-05-09 13:00:42 +05:30
"app/src/views/features/apis/curl-to-json.js",
2023-02-20 18:22:59 +05:30
],
env: {
browser: true,
es2021: true,
node: true,
},
extends: ["eslint:recommended", "prettier"],
overrides: [],
parserOptions: {
ecmaVersion: "latest",
sourceType: "module",
},
plugins: ["prettier"],
rules: {
"no-unused-vars": "off",
},
};