ente/web/apps/accounts/.eslintrc.js

14 lines
495 B
JavaScript
Raw Normal View History

2023-12-24 19:55:58 +00:00
module.exports = {
// When root is set to true, ESLint will stop looking for configuration files in parent directories.
// This is required here to ensure desktop picks the right eslint config, where this app is
// packaged as a submodule.
root: true,
extends: ["@ente/eslint-config"],
parser: "@typescript-eslint/parser",
2023-12-24 19:55:58 +00:00
parserOptions: {
tsconfigRootDir: __dirname,
project: "./tsconfig.json",
2023-12-24 19:55:58 +00:00
},
ignorePatterns: [".eslintrc.js", "out"],
2023-12-24 19:55:58 +00:00
};