npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

@winner-fed/stylelint-config-win

v2.0.2

Published

CSS Style guide for winner fed

Readme

stylelint-config-win

团队内部的 stylelint 配置,支持 CommonJS 和 ESM 双模块系统。

特性

  • ✅ 支持 CommonJS 和 ESM 双模块系统
  • ✅ 向前兼容,无需修改现有配置
  • ✅ 完整的 CSS/SCSS/Less 规则集
  • ✅ 支持 Vue 3 深度选择器
  • ✅ 现代化的构建配置

安装

yarn add @winner-fed/stylelint-config-win -D

依赖版本

stylelint ^13.6.1

Tips:如果项目中没有安装此依赖包或者版本不一致,请安装或者升级。

使用

CommonJS 方式 (传统方式,向前兼容)

在你的项目的根目录下创建一个 stylelint.config.js 文件:

module.exports = {
  extends: "@winner-fed/stylelint-config-win"
}

ESM 方式 (现代方式)

在你的项目的根目录下创建一个 stylelint.config.mjs 文件:

export default {
  extends: "@winner-fed/stylelint-config-win"
}

在 package.json 中配置

{
  "stylelint": {
    "extends": "@winner-fed/stylelint-config-win"
  }
}

项目脚本配置

在项目目录下的 package.json 添加检测指令:

{
 ...
 "scripts": {
+    "lint:style": "stylelint \"src/**/*.{vue,less,postcss,css,scss}\" --fix --cache --cache-location node_modules/.cache/stylelint/",
 }
 ...
}

模块导入方式

CommonJS 导入

// 主入口 (推荐,向前兼容)
const config = require('@winner-fed/stylelint-config-win');

// 明确的 CommonJS 入口
const config = require('@winner-fed/stylelint-config-win/index.cjs');

ESM 导入

// ESM 入口
import config from '@winner-fed/stylelint-config-win/index.mjs';

// 或者使用动态导入
const config = await import('@winner-fed/stylelint-config-win/index.mjs');

支持的文件类型

  • .css
  • .scss
  • .less
  • .vue (单文件组件中的 <style> 块)
  • .postcss

引用

环境要求

Node.js >= 12

stylelint >= 13.5.0