mirror of
https://github.com/Alfresco/alfresco-content-app.git
synced 2025-07-24 17:31:52 +00:00
[ACS-8688] export playwright shared lib (#4068)
* [ACS-8688] export playwright shared lib * [ACS-8688] changes name * [ACS-8688] changes name * [ACS-8688] add lint file and fix lint issue * [ACS-8688] test fix * added ng package file
This commit is contained in:
17
projects/aca-playwright-shared/.eslintrc.js
Normal file
17
projects/aca-playwright-shared/.eslintrc.js
Normal file
@@ -0,0 +1,17 @@
|
||||
const path = require('path');
|
||||
module.exports = {
|
||||
extends: '../../.eslintrc.json',
|
||||
ignorePatterns: ['!**/*'],
|
||||
overrides: [
|
||||
{
|
||||
files: ['*.ts'],
|
||||
parserOptions: {
|
||||
project: [path.join(__dirname, 'tsconfig.lib.json'), path.join(__dirname, 'tsconfig.spec.json')],
|
||||
createDefaultProgram: true
|
||||
},
|
||||
rules: {
|
||||
'no-console': ['error', {'allow': ['info', 'log', 'warn', 'error'] }]
|
||||
}
|
||||
}
|
||||
]
|
||||
};
|
Reference in New Issue
Block a user