mirror of
https://github.com/PostHog/posthog.git
synced 2024-11-22 08:40:03 +01:00
9b8736d576
* Speed up e2e builds * Don't go to demo when logging in/cypress errors * Execute cypress in docker container * Pull from correct image * add -T * Try something else * Add dockerfile * Don't push tags * Tag * Try another tag * image tag * Try pulling * Try * Try caching * no docker ifle * Install node * name * name
32 lines
733 B
JavaScript
32 lines
733 B
JavaScript
module.exports = {
|
|
env: {
|
|
browser: true,
|
|
es6: true,
|
|
'cypress/globals': true,
|
|
},
|
|
settings: {
|
|
react: {
|
|
version: 'detect',
|
|
},
|
|
},
|
|
extends: ['eslint:recommended', 'plugin:react/recommended'],
|
|
globals: {
|
|
Atomics: 'readonly',
|
|
SharedArrayBuffer: 'readonly',
|
|
},
|
|
parser: 'babel-eslint',
|
|
parserOptions: {
|
|
ecmaFeatures: {
|
|
jsx: true,
|
|
},
|
|
ecmaVersion: 2018,
|
|
sourceType: 'module',
|
|
},
|
|
plugins: ['prettier', 'react', 'cypress'],
|
|
rules: {
|
|
'react/prop-types': [0],
|
|
'react/no-unescaped-entities': [0],
|
|
'no-unused-vars': ['error', { ignoreRestSiblings: true }],
|
|
},
|
|
}
|