Files
theme-earth/.eslintrc.cjs
Ryan Wang d8769ce58c chore: development setup
Signed-off-by: Ryan Wang <i@ryanc.cc>
2022-10-05 23:26:16 +08:00

15 lines
309 B
JavaScript

module.exports = {
root: true,
parser: "@typescript-eslint/parser",
plugins: ["@typescript-eslint", "prettier"],
extends: [
"eslint:recommended",
"plugin:@typescript-eslint/eslint-recommended",
"plugin:@typescript-eslint/recommended",
"prettier",
],
env: {
node: true,
},
};