0
Fork 0
mirror of https://github.com/penpot/penpot-plugins.git synced 2025-01-23 23:28:41 -05:00
penpot-plugins/apps/poc-state-read-plugin/.eslintrc.json
2024-04-17 15:03:50 +02:00

22 lines
455 B
JSON

{
"extends": ["../../.eslintrc.json"],
"ignorePatterns": ["!**/*", "vite.config.ts"],
"parser": "@typescript-eslint/parser",
"parserOptions": {
"project": "./apps/poc-state-read-plugin/tsconfig.app.json"
},
"overrides": [
{
"files": ["*.ts", "*.tsx", "*.js", "*.jsx"],
"rules": {}
},
{
"files": ["*.ts", "*.tsx"],
"rules": {}
},
{
"files": ["*.js", "*.jsx"],
"rules": {}
}
]
}