Codemirror lint feature not working react-codemirror in React/Redux/Typescript App

后端 未结 2 1138
你的背包
你的背包 2021-01-13 03:23

I\'m trying to enable the linting addon of the react-codemirror component in a React/Redux/TS app. The normal codemirror stuff works fine, syntax highlighting, line numbers,

2条回答
  •  [愿得一人]
    2021-01-13 04:01

    I had a similar issue and fixed it by making jshint available on the window by replacing:

    import '../../../node_modules/jshint/dist/jshint';
    

    with

    (window).JSHINT = require('jshint').JSHINT;
    

提交回复
热议问题