Skip to content

Commit

Permalink
Merge pull request #16 from squidit/feature/add-more-components
Browse files Browse the repository at this point in the history
💚 Fix build
  • Loading branch information
wandersonsales-dev committed May 8, 2024
2 parents fe00bb8 + a9bcc87 commit a3661f6
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .eslintrc
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
],
"rules": {
"react-hooks/rules-of-hooks": "error",
"react-hooks/exhaustive-deps": "warn",
"react-hooks/exhaustive-deps": "warn"
},
"parser": "@typescript-eslint/parser",
"overrides": [
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@squidit/react-css",
"version": "1.0.1",
"version": "1.0.2",
"scripts": {
"format": "prettier --write --parser typescript '**/*.{ts,tsx}'",
"lint": "eslint src --ext js,ts,tsx",
Expand Down
1 change: 0 additions & 1 deletion src/hooks/index.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
export * from './use-sq-image-loader'
export * from './use-sq-throttle'
export * from './use-sq-rect'
export * from './use-sq-metric-chart'
Expand Down
2 changes: 1 addition & 1 deletion tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@

/* Linting */
"strict": false, // Enables strict type checking.
"noUnusedLocals": true, // Flags unused local variables.
"noUnusedLocals": false, // Flags unused local variables.
"noUnusedParameters": true, // Flags unused function parameters.
"noFallthroughCasesInSwitch": true, // Requires handling all cases in a switch statement.
"declaration": true, // Generates declaration files for TypeScript.
Expand Down

0 comments on commit a3661f6

Please sign in to comment.