Giter VIP home page Giter VIP logo

Comments (7)

Aemple avatar Aemple commented on May 21, 2024

@lydell Please help look at this problem

from eslint-plugin-simple-import-sort.

lydell avatar lydell commented on May 21, 2024

First problem

It looks like you expect "@/components/test" to end up in "^@?\\w"? "@components/test" would have matched, but the slash makes it not match. I don’t know the intention here so I can’t know the correct solution, but changing to "^@/" fixes the issue in the small example at least.

Second problem

You can change "^[^.]" in "^[^.\\u0000]" to fix the issue.

Alternatively, you can change "^\\u0000" into "^\\u0000.*" – that works too (longest match wins).

Comments

Good idea about improving the default groups, so people can reorder those regexps without being mislead!

I will do that in the next release, and look through the docs again.

Question

The suggested change in flatMap – what does it do? And is it even needed if we change the default group regexps?

from eslint-plugin-simple-import-sort.

Aemple avatar Aemple commented on May 21, 2024

hi
@lydell

first problem

When ["^[^.]"] is in front of ["^@?\w"] ,Both["^[^.]"] and ["^@?\w"] can capture import react from "react";, So import react from "react";can't be grouped correctly ,
image

["^[^.]"] has problems in both cases, I think["^[^.]"] should be replaced

Question

Not necessary

from eslint-plugin-simple-import-sort.

lydell avatar lydell commented on May 21, 2024

I see. Changing "^@?\\w" to "^@?\\w+" seems to do the trick?

from eslint-plugin-simple-import-sort.

Aemple avatar Aemple commented on May 21, 2024

Yes, so the default groups and readme documents need to be changed

The first way
Default groups need to modify "^@?\w" and "^\u0000"

The second way
Modify ["^[^.]"] so that ["^[^.]"] has no intersection with "^@?\w" and "^\u0000"

from eslint-plugin-simple-import-sort.

tutods avatar tutods commented on May 21, 2024

I want exclude a specific import from one group to use into another group.
Is possible?

{
						groups: [
							['^react', '^next', '^recoil', '^@?\\w'],
							['^styles', '^ui/styles', './styles'],
							[
								`^(${folders.join('|')})(/.*|$)`,
								'^\\.'
							],
							['^[^.]']
						]
					}

this are my groups, and I want remove ./styles and use it on second group styles,ui/styles. Is possible?

from eslint-plugin-simple-import-sort.

lydell avatar lydell commented on May 21, 2024

Hi @tutods! I’m not quite following what you’re trying to do. Can you open a new issue, with some more details and examples?

from eslint-plugin-simple-import-sort.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.