Module Error (from ./node_modules/eslint-loader/index.js):

Module Error (from ./node_modules/eslint-loader/index.js):

Module Error (from ./node_modules/eslint-loader/index.js):    

正在回答 回答被采纳积分+1

登陆购买课程后可参与讨论,去登陆

5回答
好帮手慕言 2021-03-26 18:39:05

​同学你好,把下方红线处的逗号和 '@vue/standard'去掉试试

http://img1.sycdn.imooc.com//climg/605db9590957a1d503030142.jpg

去掉之后,记得重新启动一下项目(多按几次ctrl+c就可以终止项目的运行,然后再执行npm run serve)

祝学习愉快~

好帮手慕言 2021-03-26 18:32:00

同学你好,出现警告,肯定是代码中有不符合eslint规范的地方,eslint比较严格,同学没有必要在这方便浪费时间,可以按照慕ou老师的第二种方式测试下:

http://img1.sycdn.imooc.com//climg/605db73a09c1e7c605390194.jpg

祝学习愉快~

  • 提问者 慕哥0292637 #1

       Failed to compile.    在我调式的时候会整屏 遮罩      eslinttrc,js 中 没有eslint:recommended  代码   


    只有

    module.exports = {

      root: true,

      env: {

        node: true

      },

        extends: [

          'plugin:vue/vue3-essential',

          '@vue/standard'

        ],

      parserOptions: {

        parser: 'babel-eslint'

      },

      rules: {

        'no-console': process.env.NODE_ENV === 'production' ? 'warn' : 'off',

        'no-debugger': process.env.NODE_ENV === 'production' ? 'warn' : 'off'

      }

    }



    2021-03-26 18:35:25
好帮手慕言 2021-03-26 16:17:22

同学你好,看同学提供的提示,是eslint给出的警告,eslint比较严格,多一个少一个空格都会给出警告,一般情况下,根据信息就可以消除警告,例如:

http://img1.sycdn.imooc.com//climg/605d9640099f688905640077.jpg

提示Shop.vue文件中第15行,预期缩进2个空格,但发现4个缩进,这时只需要减少两个空格,警告就会少一个。

如果不想看到这些警告,可以按照慕ou老师的方法去掉。


同学说不能识别指的是没有eslint警告了吗?如果是的话,那么项目可以正常运行吗?如果可以正常运行的话,可以不用理会eslint了,如果不能正常运行项目,可以把报错截图上来,老师帮助排查,祝学习愉快~


  • 提问者 慕哥0292637 #1

    去掉eslintrc.js    又报错  没有trc文件  但是 我把文件还原又可以运行了  

      然后    我刷新几次又出现Failed to compile.          

    老师  我不知道 是我频繁刷新的 原因  还是我频繁的项目运行npm run serve 的原因   或者是我电脑的原因    

    2021-03-26 17:09:09
好帮手慕久久 2021-03-25 19:22:27

同学你好,可以通过如下方式去除:

1、方式1:把项目中的.eslintrc.js文件删除,然后重启项目

2、方式2:

可以把.eslintrc.js文件中的如下代码注释掉,再重启项目:

60498091093aa39804390099.jpg (439×99)

如果没有.eslintrc.js文件,可以在package.json文件中,把上图圈起来的代码删掉, 然后重启项目测试下。

祝学习愉快!

  • 提问者 慕哥0292637 #1

    Syntax Error: Error: No ESLint configuration found in C:\Users\taoyu\Desktop\jingdongmodel\src\views\Home.



    You may use special comments to disable some warnings.

    Use // eslint-disable-next-line to ignore the next line.

    Use /* eslint-disable */ to ignore all warnings in a file.


    2021-03-25 19:37:33
  • 提问者 慕哥0292637 #2

      老师我去看了很多文章 博客   关于 Failed to compile.

    ./src/views/Home/Nearby.vue Module Error (from ./node_modules/eslint-loader/index.js):

                    全部是说eslint配置问题   重装   npm init -y npm install eslint --save-dev cd ./node_modules/.bin/ 然后eslint init 但是eslint又不能识别了

    2021-03-25 22:17:25
好帮手慕久久 2021-03-25 19:02:10

同学你好,请同学描述一下该报错是怎么发生的?是写代码的过程中报错了?如果是的话,可以把写的代码粘贴出来,老师测试一下。还是启动的时候报错?如果是这样的话,建议把命令行的报错信息全部截图,老师看下完整的报错信息再针对性的为同学解答。

祝学习愉快!

  • 提问者 慕哥0292637 #1

      我项目因为ellint格式多达129个错误   我想知道怎么去掉   


    > jingdongmodel@0.1.0 serve C:\Users\taoyu\Desktop\jingdongmodel

    > vue-cli-service serve


     INFO  Starting development server...

    98% after emitting CopyPlugin


     ERROR  Failed to compile with 1 error                                                                                                                                 下午7:08:39

     error  in ./src/components/Shop.vue


    Module Error (from ./node_modules/eslint-loader/index.js):


    C:\Users\taoyu\Desktop\jingdongmodel\src\components\Shop.vue

      15:1   error  Expected indentation of 2 spaces but found 4  indent

      15:10  error  Missing space before value for key 'name'     key-spacing

      16:1   error  Expected indentation of 2 spaces but found 4  indent

      16:5   error  Extra space after key 'props'                 key-spacing

      16:14  error  There should be no space after '['            array-bracket-spacing

      16:21  error  There should be no space before ']'           array-bracket-spacing

      17:1   error  Expected indentation of 2 spaces but found 4  indent

      17:10  error  Missing space before function parentheses     space-before-function-paren

      18:1   error  Trailing spaces not allowed                   no-trailing-spaces

      19:1   error  Expected indentation of 2 spaces but found 4  indent

      19:6   error  Unexpected trailing comma                     comma-dangle

      46:1   error  Trailing spaces not allowed                   no-trailing-spaces

      47:1   error  More than 1 blank line not allowed            no-multiple-empty-lines


    ✖ 13 problems (13 errors, 0 warnings)

      13 errors and 0 warnings potentially fixable with the `--fix` option.



     @ ./node_modules/cache-loader/dist/cjs.js??ref--12-0!./node_modules/babel-loader/lib!./node_modules/cache-loader/dist/cjs.js??ref--0-0!./node_modules/vue-loader-v16/dist??ref--0-1!./src/views/Home/Nearby.vue?vue&type=script&lang=js 5:0-41 8:10-14

     @ ./src/views/Home/Nearby.vue?vue&type=script&lang=js

     @ ./src/views/Home/Nearby.vue

     @ ./node_modules/cache-loader/dist/cjs.js??ref--12-0!./node_modules/babel-loader/lib!./node_modules/cache-loader/dist/cjs.js??ref--0-0!./node_modules/vue-loader-v16/dist??ref--0-1!./src/views/Home/Page.vue?vue&type=script&lang=js

     @ ./src/views/Home/Page.vue?vue&type=script&lang=js

     @ ./src/views/Home/Page.vue

     @ ./src/router/index.js

     @ ./src/main.js

     @ multi (webpack)-dev-server/client?http://10.153.27.18:8080&sockPath=/sockjs-node (webpack)/hot/dev-server.js ./src/main.js


    2021-03-25 19:09:13
  • 提问者 慕哥0292637 #2

    <template>

            <div class="shop">

                <img class="shop-img"  :src="item.imgUrlalt="" >

                <div class="shop-content">

                    <div class="shop-title">{{item.title}}</div>

                    <span class="shop-tags" >{{item.tag1}}</span>

                    <span class="shop-tags" >{{item.tag2}}</span>

                    <span class="shop-tags" >{{item.tag3}}</span>

                    <p class="shop-desc"> {{item.desc}}</p>

                </div>

            </div>

    </template>

    <script>

    export default {

        name:'Shop',

        props : [ 'item' ],

        setup() {

            

        },

    }

    </script>

    <style lang="scss" scoped>

    .shop{

        displayflex;

        margin-top0.14rem;

        &-img{

            displayblock;

            width0.56rem;

            height0.56rem;

        }

        &-content{

            flex1;

            margin-left0.16rem;

            border-bottom0.01rem #F1F1F1  solid;

        }

        &-title{

            font-size0.16rem;

            color#333333;

            margin-bottom0.08rem;


        }

        &-tags{

            font-size0.13rem;

            color#333333;

            margin-right0.16rem;

           


        }

        &-desc{

        font-size0.13rem;

        color#E93B3B;

        margin-top0.08rem;

        }

    }


    </style>



    2021-03-25 19:10:12
问题已解决,确定采纳
还有疑问,暂不采纳

恭喜解决一个难题,获得1积分~

来为老师/同学的回答评分吧

0 星
请稍等 ...
意见反馈 帮助中心 APP下载
官方微信

在线咨询

领取优惠

免费试听

领取大纲

扫描二维码,添加
你的专属老师