mirror of
https://github.com/penpot/penpot-exporter-figma-plugin.git
synced 2024-12-22 05:33:02 -05:00
33 lines
731 B
JavaScript
33 lines
731 B
JavaScript
module.exports = {
|
|
root: true,
|
|
parserOptions: {
|
|
project: './tsconfig.base.json',
|
|
parser: '@typescript-eslint/parser',
|
|
ecmaVersion: 'latest',
|
|
sourceType: 'module'
|
|
},
|
|
env: { browser: true, node: true },
|
|
extends: [
|
|
'eslint:recommended',
|
|
'plugin:react/recommended',
|
|
'plugin:react/jsx-runtime',
|
|
'plugin:@typescript-eslint/recommended',
|
|
'plugin:prettier/recommended',
|
|
'plugin:@figma/figma-plugins/recommended'
|
|
],
|
|
settings: {
|
|
react: {
|
|
version: 'detect'
|
|
}
|
|
},
|
|
rules: {
|
|
'@typescript-eslint/no-unused-vars': [
|
|
'error',
|
|
{
|
|
ignoreRestSiblings: true,
|
|
argsIgnorePattern: '^_',
|
|
destructuredArrayIgnorePattern: '^_'
|
|
}
|
|
]
|
|
}
|
|
};
|