Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/refactor/frontend' into feat/con…
Browse files Browse the repository at this point in the history
…trol-page-layout
  • Loading branch information
shree-venkatesh committed Nov 8, 2023
2 parents 5330c86 + 6233dad commit 7141422
Show file tree
Hide file tree
Showing 27 changed files with 657 additions and 607 deletions.
13 changes: 13 additions & 0 deletions houston/.eslintrc.cjs
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,19 @@ module.exports = {
{ allowConstantExport: true },
],

// Make an unused variable a warning, and
// Ignore unused variable warning if the
// variable begins with underscore
"no-unused-vars": "off",
"@typescript-eslint/no-unused-vars": [
"warn", // or "error"
{
"argsIgnorePattern": "^_",
"varsIgnorePattern": "^_",
"caughtErrorsIgnorePattern": "^_"
}
],

// suppress errors that require React to be imported (not necessary in React versions >= v17.0)
'react/react-in-jsx-scope': 'off',
'react/jsx-uses-react': 'off',
Expand Down
Loading

0 comments on commit 7141422

Please sign in to comment.