# eslint-config-stf **Repository Path**: mirrors_openstf/eslint-config-stf ## Basic Information - **Project Name**: eslint-config-stf - **Description**: STF - ESLint Shareable Config - **Primary Language**: Unknown - **License**: Apache-2.0 - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2020-08-18 - **Last Updated**: 2025-09-27 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # Warning # This project along with other ones in [OpenSTF](https://github.com/openstf) organisation is provided as is for community, without active development. # You can check any other forks that may be actively developed and offer new/different features [here](https://github.com/openstf/stf/network). # Active development has been moved to [DeviceFarmer](https://github.com/DeviceFarmer) organisation. # STF - ESLint Shareable Config #### An ESLint [Shareable Config](http://eslint.org/docs/developer-guide/shareable-configs) for STF ## WIP This module is for advanced users. [![js-standard-style](https://cdn.rawgit.com/feross/standard/master/badge.svg)](https://github.com/feross/standard) ## Install ```bash npm install eslint-config-stf ``` ## Usage Shareable configs are designed to work with the `extends` feature of `.eslintrc` files. You can learn more about [Shareable Configs](http://eslint.org/docs/developer-guide/shareable-configs) on the official ESLint website. To use the JavaScript Standard Style shareable config, first run this: ```bash npm install eslint-config-stf eslint-plugin-stf ``` Then, add this to your .eslintrc file: ``` { "extends": "stf" } ``` *Note: We omitted the `eslint-config-` prefix since it is automatically assumed by ESLint.* You can override settings from the shareable config by adding them directly into your `.eslintrc` file.