Ошибка ESlint после импорта библиотеки «act-ga »в проект React - PullRequest
0 голосов
/ 03 июня 2019

Мой проект показывает много ошибок ESlint после того, как я импортирую'act-ga 'в основной компонент

, когда я устанавливаю activ-ga следующим образом: npm install react-ga --save

ошибка выглядит следующим образом:

http://eslint.org/docs/rules/comma-dangle  Missing trailing comma  
  src/components/main/dashboard/index.js:3:12


  ✘  http://eslint.org/docs/rules/comma-dangle  Missing trailing comma  
  src/components/main/dashboard/index.js:14:13


  ✘  http://eslint.org/docs/rules/comma-dangle  Missing trailing comma  
  src/components/main/dashboard/index.js:61:22


  ✘  http://eslint.org/docs/rules/comma-dangle  Missing trailing comma  
  src/components/main/dashboard/index.js:93:33


  ✘  http://eslint.org/docs/rules/comma-dangle  Missing trailing comma  
  src/components/main/dashboard/index.js:110:29


  ✘  http://eslint.org/docs/rules/comma-dangle  Missing trailing comma  
  src/components/main/dashboard/index.js:115:34


  ✘  http://eslint.org/docs/rules/comma-dangle  Missing trailing comma  
  src/components/main/dashboard/index.js:130:28


  ✘  http://eslint.org/docs/rules/comma-dangle  Missing trailing comma  
  src/components/main/dashboard/index.js:134:29

мой код в somecomponent.js

import TimeAgo from 'javascript-time-ago'
import en from 'javascript-time-ago/locale/en'
import axios from 'axios'
import _ from 'lodash'

import {
  ReactGA
} from 'react-ga'


TimeAgo.locale(en)
const timeAgo = new TimeAgo('en-US')

const styles = theme => {
  return {
    progress: {
      margin: theme.spacing.unit * 2,
    },
    root: {
      width: '100%',
    },
    title: {
      marginBottom: '20px',
    },
  }
}

class Dashboard extends Component {

  constructor(props) {
    super(props)
}

 }

, но если я рекомендую import { ReactGA } from 'react-ga'

, то все будет хорошо.что-то не так с импортом ReactGA? (я тоже пробовал import ReactGA from 'react-ga'), тот же результат.обновить ESlint или другое действие, чтобы это исправить?

...