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.
20 lines
397 B
JavaScript
20 lines
397 B
JavaScript
module.exports = {
|
|
root: true,
|
|
env: {
|
|
browser: true,
|
|
es6: true,
|
|
node: true,
|
|
},
|
|
parser: "@typescript-eslint/parser",
|
|
plugins: ["@typescript-eslint", "react"],
|
|
extends: [
|
|
"plugin:@typescript-eslint/recommended",
|
|
"react-app",
|
|
"plugin:prettier/recommended",
|
|
],
|
|
rules: {
|
|
"@typescript-eslint/ban-ts-comment": "warn",
|
|
"prettier/prettier": "error",
|
|
},
|
|
};
|