mirror of
https://github.com/ente-io/ente.git
synced 2025-06-13 12:08:56 +00:00
14 lines
383 B
JavaScript
14 lines
383 B
JavaScript
/* eslint-env node */
|
|
module.exports = {
|
|
root: true,
|
|
extends: [
|
|
"eslint:recommended",
|
|
"plugin:@typescript-eslint/strict-type-checked",
|
|
"plugin:@typescript-eslint/stylistic-type-checked",
|
|
],
|
|
plugins: ["@typescript-eslint"],
|
|
parserOptions: { project: true },
|
|
parser: "@typescript-eslint/parser",
|
|
ignorePatterns: [".eslintrc.js"],
|
|
};
|