0
Fork 0
mirror of https://github.com/penpot/penpot-plugins.git synced 2025-01-09 00:10:12 -05:00
penpot-plugins/apps/example-styles/.eslintrc.json

23 lines
477 B
JSON
Raw Normal View History

2024-02-27 05:48:27 -05:00
{
2024-03-27 07:57:02 -05:00
"extends": ["../../.eslintrc.base.json", "../../.eslintrc.json"],
2024-03-11 08:57:11 -05:00
"ignorePatterns": ["!**/*", "vite.config.ts"],
"parser": "@typescript-eslint/parser",
"parserOptions": {
"project": "./apps/example-styles/tsconfig.app.json"
},
2024-02-27 05:48:27 -05:00
"overrides": [
{
"files": ["*.ts", "*.tsx", "*.js", "*.jsx"],
"rules": {}
},
{
"files": ["*.ts", "*.tsx"],
"rules": {}
},
{
"files": ["*.js", "*.jsx"],
"rules": {}
}
]
}