mirror of
https://github.com/halo-dev/theme-earth.git
synced 2025-10-14 06:21:09 +00:00

适配[瞬间插件](https://github.com/halo-sigs/plugin-moments)。 /kind feature Fixes https://github.com/halo-dev/theme-earth/issues/70 <img width="1138" alt="image" src="https://github.com/halo-dev/theme-earth/assets/21301288/6fc9df4b-0fb3-4116-8cb9-2e02242acbcc"> <img width="1036" alt="image" src="https://github.com/halo-dev/theme-earth/assets/21301288/e4d3243b-e35c-41f5-a1d6-86c1ed9d8b85"> ```release-note 适配瞬间插件。 ```
18 lines
373 B
JavaScript
18 lines
373 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,
|
|
},
|
|
rules: {
|
|
"@typescript-eslint/ban-ts-comment": "off",
|
|
},
|
|
};
|