0.15.0 ā€¢ Published 2 months ago

@figma/eslint-plugin-figma-plugins v0.15.0

Weekly downloads
-
License
MIT
Repository
github
Last release
2 months ago

eslint-plugin-figma-plugins

This repository defines typescript-eslint rules for Figma plugin development.

This tool helps you stay up to date with best practices and deprecations in the Figma Plugin API. You can use it to help identify, and in many cases automatically fix, issues in your plugin code. Like any ESLint plugin, it integrates with IDEs like VSCode to provide inline warnings and quick-fix functionality.

A quick look

An animation of VSCode quick fixes enabled by this plugin

Installation

Dependencies

This linter requires TypeScript, ESLint, typescript-eslint, and the Figma Plugin API type definitions. To install all of these, run:

npm install -D typescript eslint @typescript-eslint/parser @typescript-eslint/eslint-plugin @figma/plugin-typings

Install the ESLint plugin package

npm install -D @figma/eslint-plugin-figma-plugins

Configure eslint

Configure typescript-eslint as normal using these instructions.

Next, update your ESLint config's extends array to include the plugin:@figma/figma-plugins/recommended ruleset. We also recommend the following rulesets:

  • eslint:recommended,
  • plugin:@typescript-eslint/recommended

To work with TypeScript code, ESLint also requires the following parser settings:

{
  ...
  parser: '@typescript-eslint/parser',
  parserOptions: {
    project: './tsconfig.json',
  },
  ...
}

Here's a full example of .eslintrc.js:

/* eslint-env node */
module.exports = {
  extends: [
    'eslint:recommended',
    'plugin:@typescript-eslint/recommended',
    'plugin:@figma/figma-plugins/recommended',
  ],
  parser: '@typescript-eslint/parser',
  parserOptions: {
    project: './tsconfig.json',
  },
  root: true
}

Restart the ESLint server

If you've run npm install and updated to a newer version of this package, remember to restart your IDE. In VSCode, you can restart the ESLint server independently by opening the command palette and choosing "Restart ESLint Server".

Usage

Linting and autofixing

You can lint your project using these rules by running

npx eslint ./path/to/source

Some rules provide autofixes, which you can run using --fix.

npx eslint --fix ./path/to/source

Autofixes are also available via some IDEs.

VSCode

To use ESLint with VSCode, see the ESLint VSCode extension. This extension will show rule violations inline, as well as provide opportunities to run autofixes directly in the IDE.

Rules

šŸ’¼ Configurations enabled in.\ āš ļø Configurations set to warn in.\ šŸ‘ Set in the recommended configuration.\ šŸ”¦ Set in the recommended-problems-only configuration.\ šŸ”§ Automatically fixable by the --fix CLI option.

NameDescriptionšŸ’¼āš ļøšŸ”§
await-requires-asyncRequire functions that contain await to be asyncšŸ‘ šŸ”¦šŸ”§
ban-deprecated-id-paramsBan use of deprecated string ID parametersšŸ‘ šŸ”¦šŸ”§
ban-deprecated-sync-methodsBan use of deprecated synchronous methodsšŸ‘ šŸ”¦šŸ”§
ban-deprecated-sync-prop-gettersBan use of deprecated synchronous property gettersšŸ‘ šŸ”¦šŸ”§
ban-deprecated-sync-prop-settersBan use of deprecated synchronous property gettersšŸ‘ šŸ”¦šŸ”§
dynamic-page-documentchange-event-adviceAdvice on using the documentchange eventšŸ‘
dynamic-page-find-method-adviceAdvice on using the find*() family of methodsšŸ‘

Contributing

Please see CONTRIBUTING.md

0.15.0

2 months ago

0.12.0

2 months ago

0.13.0

2 months ago

0.14.0

2 months ago

0.11.0

3 months ago

0.10.0

3 months ago