init
This commit is contained in:
commit
0a1187788c
49 changed files with 11570 additions and 0 deletions
20
eslint.config.mjs
Normal file
20
eslint.config.mjs
Normal file
|
@ -0,0 +1,20 @@
|
|||
import eslintPluginAstro from "eslint-plugin-astro";
|
||||
import typescriptEslint from "typescript-eslint";
|
||||
|
||||
export default [
|
||||
{
|
||||
ignores: [
|
||||
"**/dist/*",
|
||||
"**/result/*",
|
||||
"**/node_modules/*"
|
||||
]
|
||||
},
|
||||
...typescriptEslint.configs.recommended,
|
||||
...eslintPluginAstro.configs.recommended,
|
||||
{
|
||||
rules: {
|
||||
quotes: ["error", "double"],
|
||||
semi: ["error", "always"]
|
||||
},
|
||||
}
|
||||
];
|
Loading…
Add table
Add a link
Reference in a new issue