Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
adeira-source-id: 513530b3851460c02c7c0d4ae1d3b2537d52cecc
  • Loading branch information
itsdouges authored and triplex-bot committed Oct 11, 2023
1 parent 33b05be commit 02259ce
Show file tree
Hide file tree
Showing 3 changed files with 1,222 additions and 141 deletions.
14 changes: 11 additions & 3 deletions .eslintrc.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
{
"extends": ["@nkzw"],
"plugins": ["header"],
"ignorePatterns": ["dist", "build"],
"overrides": [
{
Expand All @@ -10,13 +9,15 @@
}
},
{
"files": ["**/create-triplex-project/templates/**"],
"files": ["**/create-triplex-project/templates/**", "*.d.ts"],
"rules": {
"header/header": "off"
}
}
],
"plugins": ["header"],
"rules": {
"@nkzw/no-instanceof": "off",
"@typescript-eslint/no-empty-function": "off",
"@typescript-eslint/no-explicit-any": "error",
"@typescript-eslint/no-inferrable-types": "off",
Expand All @@ -25,6 +26,7 @@
"error",
{ "argsIgnorePattern": "^_" }
],
"header/header": ["error", "scripts/header.js"],
"import/no-extraneous-dependencies": [
"error",
{
Expand All @@ -39,7 +41,13 @@
]
}
],
"import/no-unresolved": "off",
"no-extra-parens": "off",
"no-inner-declarations": "off",
"header/header": ["error", "scripts/header.js"]
"no-unused-expressions": "off",
"prefer-const": "off",
"react/no-unknown-property": "off",
"unicorn/prefer-ternary": "off",
"unicorn/prefer-top-level-await": "off"
}
}
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
"clean": "yarn workspaces run rimraf dist",
"clean:node_modules": "rimraf node_modules && yarn workspaces run rimraf node_modules",
"dev": "node ./scripts/dev.js",
"lint": "eslint ./",
"lint": "eslint ./ --cache",
"test": "vitest",
"typedef": "yarn workspaces run typedef"
},
Expand Down
Loading

0 comments on commit 02259ce

Please sign in to comment.