mirror of
https://github.com/versia-pub/server.git
synced 2025-12-06 08:28:19 +01:00
15 lines
353 B
JavaScript
15 lines
353 B
JavaScript
|
|
module.exports = {
|
||
|
|
extends: [
|
||
|
|
"eslint:recommended",
|
||
|
|
"plugin:@typescript-eslint/strict-type-checked",
|
||
|
|
"plugin:@typescript-eslint/stylistic",
|
||
|
|
],
|
||
|
|
parser: "@typescript-eslint/parser",
|
||
|
|
parserOptions: {
|
||
|
|
project: "./tsconfig.json",
|
||
|
|
},
|
||
|
|
ignorePatterns: ["node_modules/", "dist/", ".eslintrc.cjs"],
|
||
|
|
plugins: ["@typescript-eslint"],
|
||
|
|
root: true,
|
||
|
|
};
|