UNPKG

anta

Version:

CLI tool and lib to gather app audits via [Lighthouse](https://github.com/GoogleChrome/lighthouse/).

47 lines (46 loc) 1.14 kB
{ "parser": "typescript-eslint-parser", "parserOptions": { "ecmaVersion": 6, "sourceType": "module", "ecmaFeatures": { "experimentalObjectRestSpread": true } }, "extends": "eslint:recommended", "env": { "node": true, "es6": true }, "rules": { "generator-star-spacing": [0], "consistent-return": [0], "global-require": [1], "import/prefer-default-export": [0], "no-else-return": [0], "no-restricted-syntax": [0], "import/no-extraneous-dependencies": [0], "no-undef": [0], "no-unused-vars": [0], "no-console": [0], "no-use-before-define": [0], "no-nested-ternary": [0], "arrow-body-style": [0], "import/extensions": [0], "no-bitwise": [0], "no-cond-assign": [0], "import/no-unresolved": [0], "require-yield": [1], "no-param-reassign": [0], "no-shadow": [0], "no-underscore-dangle": [0], "spaced-comment": [0], "indent": ["error", 2], "quotes": [0], "func-names": [0], "arrow-parens": [0], "space-before-function-paren": [0], "no-useless-escape": [0], "object-curly-newline": [0] } }