accurat / accurapp

Create JS apps with flexible build configuration, tailored for the specific needs of Accurat
MIT License
21 stars 5 forks source link

ESLint complains about prettier indentation #68

Closed edoguido closed 4 years ago

edoguido commented 4 years ago

Expected indentation of 6 spaces but found 14. eslint(indent)

image

marcofugaro commented 4 years ago

Please provide demo code so the issue is reproducible

edoguido commented 4 years ago
      <clipPath id={`clip-${endAngle}`}>
        <path
          d={`
            M 0 ${START_RADIUS}
            ${maskPoints
              .map(({ point: { x, y }, control: { x: cx, y: cy } }) => `Q ${cx} ${cy} ${x} ${y}`)
              .join('\n')}
            `}
        />
      </clipPath>
marcofugaro commented 4 years ago

Solved in latest version