Skip to content

Commit

Permalink
docs[patch]: Fix lint (#5526)
Browse files Browse the repository at this point in the history
* Fix lint

* Fix
  • Loading branch information
jacoblee93 authored May 23, 2024
1 parent 96324b5 commit d281bdb
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 3 deletions.
1 change: 1 addition & 0 deletions docs/core_docs/.eslintrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,7 @@ module.exports = {
"import/extensions": OFF,
"react/jsx-filename-extension": OFF,
"react-hooks/rules-of-hooks": ERROR,
"react/jsx-props-no-spreading": OFF,
"react/prop-types": OFF, // PropTypes aren't used much these days.
"react/function-component-definition": [
WARNING,
Expand Down
2 changes: 1 addition & 1 deletion docs/core_docs/src/theme/Feedback.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/* eslint-disable no-return-assign, react/jsx-props-no-spreading */
/* eslint-disable no-return-assign, react/jsx-props-no-spreading, no-console */
import React, { useState, useEffect } from "react";
import { createClient } from "@supabase/supabase-js";
import useDocusaurusContext from "@docusaurus/useDocusaurusContext";
Expand Down
2 changes: 0 additions & 2 deletions libs/langchain-community/src/load/import_map.ts
Original file line number Diff line number Diff line change
Expand Up @@ -72,5 +72,3 @@ export * as document_loaders__web__sort_xyz_blockchain from "../document_loaders
export * as utils__event_source_parse from "../utils/event_source_parse.js";
export * as experimental__graph_transformers__llm from "../experimental/graph_transformers/llm.js";
export * as experimental__chat_models__ollama_functions from "../experimental/chat_models/ollama_functions.js";


0 comments on commit d281bdb

Please sign in to comment.