UNPKG

digio-rapidoc

Version:

RapiDoc - Open API spec viewer with built in console

45 lines 1.06 kB
{ "parser": "@babel/eslint-parser", "parserOptions": { "sourceType": "module", "allowImportExportEverywhere": false, "ecmaVersion": 2020, "babelOptions": { "configFile": "./.babelrc.json" } }, "extends": "airbnb-base", "settings": { "import/resolver":{ "webpack":{ "config":"webpack.config.js" } } }, "env": { "browser": true, "node": true }, "globals": { "globalThis": false // means it is not writeable }, "rules": { "max-len": [1, 300, 2, {"ignoreComments": true}], "no-debugger": 0, "no-plusplus": 0, "no-param-reassign": 0, "no-nested-ternary": 0, "no-continue": 0, "no-restricted-syntax" :0, "guard-for-in": 0, "consistent-return": 0, "array-callback-return": 0, "prefer-destructuring": 1, "class-methods-use-this": 0, "object-curly-newline": ["error", { "ObjectPattern": { "multiline": true }, "ImportDeclaration": "never", "ExportDeclaration": { "multiline": true, "minProperties": 6 } }] } }