mirror of
https://github.com/TriliumNext/Notes.git
synced 2025-07-27 10:02:59 +08:00
16 lines
326 B
JavaScript
16 lines
326 B
JavaScript
import playwright from "eslint-plugin-playwright";
|
|
import baseConfig from "../../eslint.config.mjs";
|
|
|
|
export default [
|
|
playwright.configs["flat/recommended"],
|
|
...baseConfig,
|
|
{
|
|
files: [
|
|
"**/*.ts",
|
|
"**/*.js"
|
|
],
|
|
// Override or add rules here
|
|
rules: {}
|
|
}
|
|
];
|