Skip to content

Commit

Permalink
Merge pull request #858 from brave/master
Browse files Browse the repository at this point in the history
Production Release 2023-08-14
  • Loading branch information
IanKrieger authored Aug 14, 2023
2 parents 485fbad + fd1e50a commit df93027
Show file tree
Hide file tree
Showing 117 changed files with 1,545 additions and 526 deletions.
1 change: 1 addition & 0 deletions .eslintignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
**/*.generated.tsx
30 changes: 30 additions & 0 deletions .eslintrc.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
module.exports = {
root: true,
parser: "@typescript-eslint/parser",
plugins: ["@typescript-eslint"],
parserOptions: {
tsconfigRootDir: __dirname,
project: ["./tsconfig.json"],
},
extends: [
"eslint:recommended",
"plugin:@typescript-eslint/recommended",
"plugin:react/recommended",
"plugin:react/jsx-runtime",
"prettier",
],
settings: {
react: {
version: "detect",
},
},

rules: {
"@typescript-eslint/explicit-module-boundary-types": "off",
"@typescript-eslint/no-explicit-any": "off",
"@typescript-eslint/no-inferrable-types": "off",
"@typescript-eslint/no-unused-vars": ["error", { argsIgnorePattern: "^_" }],
"@typescript-eslint/no-empty-function": "off",
"@typescript-eslint/no-require-imports": "error",
},
};
1 change: 1 addition & 0 deletions .github/workflows/sanity-check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,4 +21,5 @@ jobs:
- run: npm ci
- run: npm run tsc
- run: npm run check:audit
- run: npm run check:lint
- run: npm test
1 change: 1 addition & 0 deletions .node-version
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
18.17.1
Loading

0 comments on commit df93027

Please sign in to comment.