@ng-apimock/cypress-plugin
Version:
Cypress plugin for ng-apimock
87 lines (86 loc) • 2.16 kB
Plain Text
{
"env": {
"browser": true,
"commonjs": true,
"jest": true
},
"extends": [
"airbnb-base",
"plugin:jest/recommended",
"plugin:@typescript-eslint/recommended",
"plugin:cypress/recommended"
],
"globals": {
"Atomics": "readonly",
"SharedArrayBuffer": "readonly"
},
"parser": "@typescript-eslint/parser",
"parserOptions": {
"sourceType": "module"
},
"plugins": [
"@typescript-eslint/eslint-plugin"
],
"rules": {
"class-methods-use-this": "off",
"comma-dangle": "off",
"cypress/no-unnecessary-waiting": "off",
"dot-notation": "off",
"global-require": "off",
"function-paren-newline": ["error", "never"],
"import/extensions": "off",
"indent": [
"error",
4
],
"import/no-extraneous-dependencies": "off",
"import/no-import-module-exports": "off",
"import/no-unresolved": "off",
"import/order": [
"error",
{
"alphabetize": {
"order": "asc",
"caseInsensitive": false
},
"newlines-between": "always"
}
],
"import/prefer-default-export": "off",
"jest/no-standalone-expect": "off",
"linebreak-style": 0,
"lines-between-class-members": "off",
"max-len": [
"warn",
140
],
"no-console": "off",
"no-multi-assign": "off",
"no-param-reassign": "off",
"no-prototype-builtins": "off",
"no-plusplus": "off",
"no-return-await": "off",
"no-underscore-dangle": "off",
"no-unused-expressions": "off",
"no-useless-constructor": "off",
"no-trailing-spaces": "error",
"object-curly-spacing": ["error", "always"],
"radix": "off",
"@typescript-eslint/ban-types": "off",
"@typescript-eslint/explicit-module-boundary-types": "off",
"@typescript-eslint/no-empty-function": "off",
"@typescript-eslint/no-explicit-any": "off",
"@typescript-eslint/no-namespace": "off",
"@typescript-eslint/no-unused-vars": "off",
"@typescript-eslint/no-var-requires": "off"
},
"settings": {
"import/resolver": {
"node": {
"extensions": [
".ts"
]
}
}
}
}