🚀 Big News:Socket Has Acquired Secure Annex.Learn More →
Socket
Book a DemoSign in
Socket

@appium/eslint-config-appium-ts

Package Overview
Dependencies
Maintainers
3
Versions
21
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@appium/eslint-config-appium-ts

Shared ESLint config for Appium projects (TypeScript version)

latest
Source
npmnpm
Version
3.1.0
Version published
Weekly downloads
5.5K
-1.82%
Maintainers
3
Weekly downloads
 
Created
Source

@appium/eslint-config-appium-ts

Provides a reusable ESLint shared configuration for Appium and Appium-adjacent projects.

NPM version Downloads

Usage

Install the package:

npm install @appium/eslint-config-appium-ts --save-dev

Then 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

Keywords

eslint

FAQs

Package last updated on 23 Apr 2026

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts