123456789101112131415 |
- /* 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"],
- };
|