17 lines
272 B
JavaScript
17 lines
272 B
JavaScript
|
module.exports = {
|
||
|
env: {
|
||
|
browser: true,
|
||
|
node: true,
|
||
|
},
|
||
|
|
||
|
extends: ["prettier"],
|
||
|
parser: "@typescript-eslint/parser",
|
||
|
plugins: ["prettier", "@typescript-eslint"],
|
||
|
parserOptions: {
|
||
|
project: "./tsconfig.json",
|
||
|
},
|
||
|
rules: {
|
||
|
"prettier/prettier": "error",
|
||
|
},
|
||
|
};
|