quackers,

I miss the simpler times of PHP and jQuery

Fades,

JavaScript 🤮

Gabu,

Delete the whole thing

radiumv,
  • .eslintignore can be replaced by an ignorePatterns key in .eslintrc.cjs
  • Unless you’re ignoring entire directories or using Prettier in your editor, .prettierignore can be replaced with // prettier-ignore comments in files you want to ignore, or specifying globs in the command line (usually in the package.json script fields)
  • The entirety of .prettierrc can be replaced by a prettier key in package.json
  • Everything that ends in .ts, .js, and .cjs a script, not a config file, and they could all be moved to a separate folder and pointed at with command line flags
  • All of the options above are categorically worse than the standard layout
  • pnpm-lock.yaml and flake.lock aren’t config files and shouldn’t be edited unless you know what you’re doing
  • tailwind is bad and cringe
peter,
@peter@feddit.uk avatar

tailwind is bad and cringe

Everyone disagrees with me when I say this, I’m glad to find someone else who sees through the lies

KrankyKong,

I tried so hard to like tailwind. It’s just so… hard to work with.

sheogorath,

It’s bad if you don’t have a design system. If you have a design system it’s :chef’s kiss:

peter,
@peter@feddit.uk avatar

But is it not really annoying to redefine the entire style in the class list of every component? Like if you have multiple things that look almost identical you need about a dozen classes that are identical on each and if you ever want to change that you have to go through each of them and change it, rather than using css classes how they’re actually supposed to be used and changing it in a single place

gestalt,

That’s where the good system design part comes in.

If you have a dozen identical looking components, they should have been one component imported into a dozen places. Keep it DRY.

If you’re more concerned about stuff like common borders or background colors being applied everywhere, you can always use the “@apply” directive to create a new reusable class.

Tailwind makes creating and iterating through design concepts so much faster and easier if your system is designed well.

peter,
@peter@feddit.uk avatar

I agree that it’s useful if you’re trying to create something quick and small but as soon as you want to do anything where there’s complexity that needs to be kept consistent then it falls apart for me. Surely tailwind is the exact opposite of DRY with the way you specify properties directly on the component instead of in a normal css system?

FooBarrington,

Tailwind isn’t any more or less DRY than normal CSS.

First off, it’s rare to use CSS in the intended way these days - scoped styling has become very popular for good reasons, which means component styles are either already separated, or you’re importing things. This doesn’t change with Tailwind, you can still import things just the same.

But where it shines is removing the need for arbitrary class names. Almost every CSS codebase I’ve seen used class names differently, sometimes even for the same thing. How often have you seen .container overloaded with different meanings? Instead of having to come up with individual class names that might or might not actually be descriptive, I connect the styles to the elements that use them. No more jumping around between CSS and JS, no more arbitrary names - classes have well-defined name structures that you learn once, and use for every project after that.

KrankyKong,

IMO, scoped styling removes Tailwind’s usefulness.

I’ll use Svelte as an example. In Svelte, you can just put a style tag at the bottom of your component, and everything you put in there is automatically scoped to it. I’m not hunting through dozens a CSS files trying to find where a class was overridden and adding !important everywhere. Using vanilla CSS allows me to keep my markup clean and concise so I can better see the actual structure of each component without dozens of CSS class names cluttering everything up.

Sure, you can write your own class in Tailwind using the @apply directive, but why not just add a global CSS class? That’s essentially what you’re doing anyways. And now you don’t have to hunt through multiple layers of abstraction to figure out what styles are actually being applied.

In my experience, Tailwind was good as long as I didn’t try to do anything too interesting. What ended up happening in my project was that I would use Tailwind classes for basic styling, then break into vanilla CSS whenever Tailwind wasn’t sufficient. And that meant I was looking in multiple places to see what styling was affecting my component… which kinda defeated the purpose of using Tailwind.

Personally, I also just found Tailwind harder to read. I prefer to read code vertically rather than horizontally.

FooBarrington,

IMO, scoped styling removes Tailwind’s usefulness.

It does remove a small aspect of its usefulness, but the other ones I’ve mentioned still exist.

I’ll use Svelte as an example. In Svelte, you can just put a style tag at the bottom of your component, and everything you put in there is automatically scoped to it. I’m not hunting through dozens a CSS files trying to find where a class was overridden and adding !important everywhere. Using vanilla CSS allows me to keep my markup clean and concise so I can better see the actual structure of each component without dozens of CSS class names cluttering everything up.

Several points:

  1. You still have to hunt through the file to find any selectors applying to your elements. There’s still a bunch of vertical jumping around.
  2. How often do you actually need to see the structure of your DOM without styles? I want to see it with styles much more often than without.
  3. You still have to come up with unique class names for everything in your DOM, or you’ll have brittle selectors. This means that for every single component in every single project I have to learn the class names, and they might even change over time. This is a lot of overhead.

In my experience, Tailwind was good as long as I didn’t try to do anything too interesting. What ended up happening in my project was that I would use Tailwind classes for basic styling, then break into vanilla CSS whenever Tailwind wasn’t sufficient. And that meant I was looking in multiple places to see what styling was affecting my component… which kinda defeated the purpose of using Tailwind.

You almost always have to look in multiple places with normal CSS styling, since it’s cascading. If I can solve 95+% of my apps styling needs inline and just break out for special cases, I still remove most of the jumping around and class name overhead and so on. This is still a massive advantage.

KrankyKong,

I guess it comes down to preference. I personally don’t mind scrolling down a little bit to see my styles if it means the structure of the component is cleaner. I’ve found that I can iterate faster that way. If things get too unwieldy, that usually indicates to me that I should extract something out into a separate component.

About point 3. At least in svelte, you don’t have to worry about having unique class names. The styles are scoped to the component. Meaning that the CSS you write in one component doesn’t affect any other components (unless you explicitly want it to). So you can reuse class names on multiple components and they won’t interfere with each other. for small components, I’ll often not even use class names if I can get away with it. I’ll just use element selectors.

You can also get this functionality with React and Vue using CSS modules.

I can see why one would prefer Tailwind over traditional CSS though. Especially if you’re writing straight HTML/CSS, or if your chosen framework doesn’t support scoping styles to your component.

FooBarrington,

I guess it comes down to preference. I personally don’t mind scrolling down a little bit to see my styles if it means the structure of the component is cleaner. I’ve found that I can iterate faster that way. If things get too unwieldy, that usually indicates to me that I should extract something out into a separate component.

It definitely is, everyone should develop the way they are most comfortable. That’s Tailwind for a lot of people, but it will never be everone.

About point 3. At least in svelte, you don’t have to worry about having unique class names. The styles are scoped to the component. Meaning that the CSS you write in one component doesn’t affect any other components (unless you explicitly want it to). So you can reuse class names on multiple components and they won’t interfere with each other. for small components, I’ll often not even use class names if I can get away with it. I’ll just use element selectors.

I was talking about having to find unique class names inside a scoped context. Even from that perspective, my complaint is nevertheless completely valid - it’s still a lot of overhead and has been my biggest painpoint when maintaining a lot of applications in the past.

FooBarrington,

I’ve seen plenty of people say what you’re saying - though they usually change their tone once they’ve actually tried Tailwind.

peter,
@peter@feddit.uk avatar

I’ve tried it and I still hate it

FooBarrington,

Sure, some people will have that reaction. In my anecdotal experience you’re part of the absolute minority though, at least 80% of devs I know who have tried Tailwind love it.

pomodoro_longbreak,
@pomodoro_longbreak@sh.itjust.works avatar

<span style="color:#323232;">git rm -- .*
</span><span style="color:#323232;">git commit -m "be better"
</span><span style="color:#323232;">git push --force origin/main
</span><span style="color:#323232;">shutdown now  # take the rest of the week off - you've earned it
</span>
sndrtj,

I’m a backend dev. I needed basically a single js function for my personal website that called out to some NPM package. I thought: I’ll do this the proper modern way, typescript and everything. Result: under 10 lines of code, but 12 config files (and 1.5h of fiddling with ES Modules vs CommonJS).

peter,
@peter@feddit.uk avatar

The correct way is you download the npm package, copy and paste the function you need and paste it directly into your website

HurlingDurling,

Unless that function has so many dependencies it becomes a hassle just to try that.

merthyr1831,

stop using javascript i guess

gornius,

Framework has multiple config files, allowing you to customize almost every aspect of it.

Nooo, this is too much config files, they take up too much space in my project tree.

Framework is a monolith with a single file to configure it.

Nooo, the file is unreadable and developing extensions for it is annoying.

Framework is minimal

Nooo, it doesn’t have any useful built-in features.

Framework is a complete solution without too many things to configure.

Nooo, it doesn’t allow me to do what I want.

wizzor,

I feel personally attacked.

I have tried making a framework once, and was annoyed with myself for more than one of those reasons.

crispy_kilt,

I mean that’s not a programming problem that’s just a webdev is shit problem

squaresinger,

Actual lines of meaningful code: 3

badcommandorfilename,

:3

Rin,

;3

velox_vulnus,
@velox_vulnus@lemmy.ml avatar

╎3

mactan,

:3

yetAnotherUser,
negativenull,
@negativenull@startrek.website avatar
TrickDacy,

So it’s hell for every tool to have a somewhat easy and similar way to customize it to your exact needs? Hard to imagine that working better imo. If there’s a problem here, it’s that you’re overusing tools.

If you think this is hell, you should try using terraform. Some of the most common basic cloud things will mean hundreds of weird, largely illegible files

meliaesc,

If they could all coesxist in one file, preferably json or yaml, it would be better.

kurwa,

If all configs could use the same format and be in the same place, that would be nice. Although I think eventually you’d want to split out that config file into multiple places, because having a config thousands of lines long would suck.

meliaesc,

If the picture in the OP is the only alternative, I wouldn’t mind, you can easily collapse json/yaml and only focus on the section you need. Maybe split into files based on functionality.

kurwa,

Aren’t these configs in the OP already split by functionality though? If each of these of config files were only going to be a few lines long, having it all in one file would be great.

meliaesc, (edited )

Well, for example, there’s no reason eslintrc and eslintignore need to be separate files in any scenario, i would group them and prettier into “formatting”. But, yes I agree, one big file is preferred in most scenarios.

TrickDacy,

I agree it would be nice to have that as an option

inspxtr,

or maybe most of them in a folder? and one file that defines their locations for environment variables

hansl,

Kind of what .env files are meant for. Not enough tools use them.

Gecko,
@Gecko@lemmy.world avatar

I wish something like .config would be a thing for storing configuration files in repositories. Instead we have a .vscode, .github, .gitlab, .idea, .vs, etc

zzz,

Yeah, code editors really missed the memo that the XDG tried sending out, that (… mostly) works so well on Desktop Linux

jflorez,

I know XML is very last century but if they could coexist in one file, a file that treats each config section as an object, so we can create a Project Object Model, call it pom for simplicity, and then if you are old store it in xml and the you could have only one file and call it pom.xml and then maybe one day someone can make this very useful file a bit more modern and turn it into json or yaml but for now a single pom.xml could save us from that config hell others speak of /s

QuaternionsRock,

You could probably do this pretty easily with a custom pre-build step.

I’m not confident a single 2000 line config file would be better, though. Sounds an awful lot like Makefile hell.

onlinepersona,

I see a flakes.nix

RIP

velox_vulnus, (edited )
@velox_vulnus@lemmy.ml avatar

You know what’s the most satisfying (and possibly the stupidest) reason about using a flakes?

percentage-of-language-used

The color. I like it. Lavender is my favorite. Worth the struggle.

Feathercrown,

Perfectly balanced

dotslashme,

Welcome to projects 101 where you are now in charge of coding, infrastructure, logging, metrics, secrets, linting and deployment.

danielquinn,
@danielquinn@lemmy.ca avatar

Yeah, the whole “you build it, you own it” thing sounds great until you’re neck deep in it.

bort,

my last super simple project with js:

  • index.html
  • main.js
  • main.css

and the initial stuff was done with chatgpt. From start to finish the project took me about an hour (including deploying it to my server)

incompetentboob,

But if you didn’t have 200 configs files did you even build a project?

bort,
QuazarOmega,

Solo development is great, isn’t it?

  • All
  • Subscribed
  • Moderated
  • Favorites
  • random
  • uselessserver093
  • Food
  • aaaaaaacccccccce
  • [email protected]
  • test
  • CafeMeta
  • testmag
  • MUD
  • RhythmGameZone
  • RSS
  • dabs
  • Socialism
  • KbinCafe
  • TheResearchGuardian
  • oklahoma
  • feritale
  • SuperSentai
  • KamenRider
  • All magazines