15 lines
396 B
JavaScript
15 lines
396 B
JavaScript
/* eslint-env node */
|
|
module.exports = {
|
|
extends: [
|
|
"eslint:recommended",
|
|
"plugin:@typescript-eslint/strict-type-checked",
|
|
"plugin:@typescript-eslint/stylistic-type-checked",
|
|
],
|
|
plugins: ["@typescript-eslint"],
|
|
parser: "@typescript-eslint/parser",
|
|
parserOptions: {
|
|
project: true,
|
|
},
|
|
root: true,
|
|
ignorePatterns: [".eslintrc.js"],
|
|
};
|