UNPKG

curlconverter

Version:

convert curl commands to Python, JavaScript, Go, PHP and more

27 lines (26 loc) 677 B
{ "root": true, "parser": "@typescript-eslint/parser", "plugins": ["@typescript-eslint"], "extends": [ "eslint:recommended", "plugin:@typescript-eslint/recommended", "prettier" ], "rules": { "no-empty": ["error", { "allowEmptyCatch": true }], "no-unused-vars": "off", "no-control-regex": "off", "@typescript-eslint/no-unused-vars": [ "warn", { "argsIgnorePattern": "^_|warnings" } ], "@typescript-eslint/no-non-null-assertion": "off", "@typescript-eslint/no-explicit-any": "off" }, "parserOptions": { "ecmaVersion": 2018, "sourceType": "module" }, "ignorePatterns": ["out", "dist", "**/*.d.ts"] }