14 lines
233 B
JavaScript
14 lines
233 B
JavaScript
|
|
import appiumConfig from '@appium/eslint-config-appium-ts';
|
||
|
|
|
||
|
|
export default [
|
||
|
|
...appiumConfig,
|
||
|
|
{
|
||
|
|
ignores: [
|
||
|
|
'Configurations/**',
|
||
|
|
'Fastlane/**',
|
||
|
|
'PrivateHeaders/**',
|
||
|
|
'WebDriverAgent*/**'
|
||
|
|
],
|
||
|
|
},
|
||
|
|
];
|