Skip to content

Commit

Permalink
Merge branch 'feature/issue_64' into preview/issue_64
Browse files Browse the repository at this point in the history
  • Loading branch information
ZEKE320 committed Apr 2, 2024
2 parents 0293893 + 99f9767 commit 0929555
Showing 1 changed file with 12 additions and 8 deletions.
20 changes: 12 additions & 8 deletions astro/.eslintrc.cjs
Original file line number Diff line number Diff line change
Expand Up @@ -21,25 +21,29 @@ module.exports = {
},
},
rules: {
indent: ["warn", 4, { SwitchCase: 1, MemberExpression: "off" }],
quotes: ["warn", "double"],
semi: ["warn", "never"],
"linebreak-style": ["warn", "unix"],
"no-irregular-whitespace": "warn",
"prefer-const": "warn",
"@typescript-eslint/strict-boolean-expressions": "warn",
"@typescript-eslint/no-namespace": "warn",
"@typescript-eslint/no-unused-vars": [
"warn",
{ destructuredArrayIgnorePattern: "^_" },
{
args: "all",
argsIgnorePattern: "^_",
caughtErrors: "all",
caughtErrorsIgnorePattern: "^_",
destructuredArrayIgnorePattern: "^_",
varsIgnorePattern: "^_",
ignoreRestSiblings: true,
},
],
},
ignorePatterns: [
"dist",
"node_modules",
"dist",
"node_modules",
"tailwind.config.mjs",
"jest.config.cjs",
"astro.config.mjs"
"astro.config.mjs",
],
overrides: [
{
Expand Down

0 comments on commit 0929555

Please sign in to comment.