You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
400 B
JavaScript
21 lines
400 B
JavaScript
12 months ago
|
/* eslint-env node */
|
||
|
module.exports = {
|
||
|
env: {
|
||
|
browser: true,
|
||
|
es2021: true,
|
||
|
},
|
||
|
extends: [
|
||
|
"eslint:recommended",
|
||
|
"plugin:@typescript-eslint/recommended",
|
||
|
"plugin:prettier/recommended",
|
||
|
],
|
||
|
overrides: [],
|
||
|
parser: "@typescript-eslint/parser",
|
||
|
parserOptions: {
|
||
|
ecmaVersion: "latest",
|
||
|
sourceType: "module",
|
||
|
},
|
||
|
plugins: ["@typescript-eslint"],
|
||
|
rules: {},
|
||
|
};
|