Initial design based off original website, some things still to do
This commit is contained in:
26
.eslintrc.cjs
Normal file
26
.eslintrc.cjs
Normal file
@@ -0,0 +1,26 @@
|
||||
module.exports = {
|
||||
extends: [
|
||||
"plugin:astro/recommended",
|
||||
"eslint:recommended",
|
||||
"plugin:@typescript-eslint/recommended"
|
||||
],
|
||||
overrides: [
|
||||
{
|
||||
files: ["*.astro"],
|
||||
parser: "astro-eslint-parser",
|
||||
parserOptions: {
|
||||
ecmaVersion: "latest",
|
||||
parser: "@typescript-eslint/parser",
|
||||
extraFileExtensions: [".astro"],
|
||||
project: "./tsconfig.json"
|
||||
},
|
||||
rules: {}
|
||||
}
|
||||
],
|
||||
env: {
|
||||
node: true
|
||||
},
|
||||
rules: {
|
||||
"@typescript-eslint/ban-ts-comment": "warn"
|
||||
}
|
||||
};
|
Reference in New Issue
Block a user