Skip to content

Commit

Permalink
chore: ci caching etc (#374)
Browse files Browse the repository at this point in the history
  • Loading branch information
juliusmarminge authored Aug 31, 2022
1 parent 08fe3e8 commit 1cb7ced
Show file tree
Hide file tree
Showing 25 changed files with 455 additions and 226 deletions.
4 changes: 0 additions & 4 deletions .eslintignore

This file was deleted.

43 changes: 0 additions & 43 deletions .eslintrc

This file was deleted.

27 changes: 27 additions & 0 deletions .eslintrc.cjs
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
module.exports = {
parser: "@typescript-eslint/parser", // Specifies the ESLint parser
plugins: ["unicorn", "turbo"],
extends: [
"plugin:@typescript-eslint/recommended", // Uses the recommended rules from the @typescript-eslint/eslint-plugin
"plugin:prettier/recommended",
],
parserOptions: {
ecmaVersion: "latest", // Allows for the parsing of modern ECMAScript features
sourceType: "module", // Allows for the use of import
project: "./tsconfig.eslint.json", // Allows for the use of rules which require parserServices to be generated
},
rules: {
// Place to specify ESLint rules. Can be used to overwrite rules specified from the extended configs
"@typescript-eslint/explicit-function-return-type": "off",
"@typescript-eslint/explicit-module-boundary-types": "off",
"@typescript-eslint/no-explicit-any": "off",
"@typescript-eslint/no-floating-promises": "error",
"unicorn/filename-case": [
"error",
{
case: "camelCase",
},
],
"prettier/prettier": ["error", { endOfLine: "auto" }],
},
};
149 changes: 0 additions & 149 deletions .github/workflows/PR-CI.yml

This file was deleted.

Loading

1 comment on commit 1cb7ced

@vercel
Copy link

@vercel vercel bot commented on 1cb7ced Aug 31, 2022

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Successfully deployed to the following URLs:

create-t3-app – ./

create-t3-app-nu.vercel.app
create-t3-app-git-main-t3-oss.vercel.app
create-t3-app-t3-oss.vercel.app

Please sign in to comment.