@appium/eslint-config-appium-ts
v3.0.1
Published
Shared ESLint config for Appium projects (TypeScript version)
Readme
@appium/eslint-config-appium-ts
Provides a reusable ESLint shared configuration for Appium and Appium-adjacent projects.
Usage
Install the package:
npm install @appium/eslint-config-appium-ts --save-devThen add it to your eslint.config.mjs file:
import appiumConfig from '@appium/eslint-config-appium-ts';
import {defineConfig} from 'eslint/config';
export default defineConfig([
{
extends: [appiumConfig],
// add any other config changes
},
]);Or for ESLint < 9.22.0:
import appiumConfig from '@appium/eslint-config-appium-ts';
export default [
...appiumConfig,
// add any other config changes
];Notes
- This configuration is intended to be used alongside Prettier.
License
Copyright © 2023 OpenJS Foundation. Licensed Apache-2.0
