mirror of
https://github.com/usatiuk/writer.git
synced 2025-10-28 07:57:48 +01:00
15 lines
316 B
JavaScript
15 lines
316 B
JavaScript
module.exports = {
|
|
root: true,
|
|
parser: "@typescript-eslint/parser",
|
|
plugins: ["@typescript-eslint"],
|
|
extends: [
|
|
"eslint:recommended",
|
|
"plugin:@typescript-eslint/recommended",
|
|
"prettier/@typescript-eslint",
|
|
],
|
|
env: {
|
|
browser: true,
|
|
node: true
|
|
},
|
|
};
|