├── .editorconfig ├── .gitattributes ├── .github ├── dependabot.yml └── workflows │ ├── code-scanning.yml │ ├── lint.yml │ └── test.yml ├── .gitignore ├── .npmrc ├── .prettierignore ├── .prettierrc.json ├── .remarkrc.json ├── .stylelintrc.json ├── CHANGELOG.md ├── LICENSE ├── README.md ├── __tests__ ├── index.test.mjs ├── invalid.scss └── valid.scss ├── eslint.config.mjs ├── index.js └── package.json /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylelint-scss/stylelint-config-recommended-scss/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | # Enforce Unix newlines 2 | * text=auto eol=lf 3 | -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylelint-scss/stylelint-config-recommended-scss/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/code-scanning.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylelint-scss/stylelint-config-recommended-scss/HEAD/.github/workflows/code-scanning.yml -------------------------------------------------------------------------------- /.github/workflows/lint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylelint-scss/stylelint-config-recommended-scss/HEAD/.github/workflows/lint.yml -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylelint-scss/stylelint-config-recommended-scss/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- 1 | lockfile-version=2 2 | -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylelint-scss/stylelint-config-recommended-scss/HEAD/.prettierignore -------------------------------------------------------------------------------- /.prettierrc.json: -------------------------------------------------------------------------------- 1 | "@stylelint/prettier-config" 2 | -------------------------------------------------------------------------------- /.remarkrc.json: -------------------------------------------------------------------------------- 1 | { 2 | "plugins": ["@stylelint/remark-preset"] 3 | } 4 | -------------------------------------------------------------------------------- /.stylelintrc.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": ["."] 3 | } 4 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylelint-scss/stylelint-config-recommended-scss/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylelint-scss/stylelint-config-recommended-scss/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylelint-scss/stylelint-config-recommended-scss/HEAD/README.md -------------------------------------------------------------------------------- /__tests__/index.test.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylelint-scss/stylelint-config-recommended-scss/HEAD/__tests__/index.test.mjs -------------------------------------------------------------------------------- /__tests__/invalid.scss: -------------------------------------------------------------------------------- 1 | @if $x == null { color: red; } 2 | -------------------------------------------------------------------------------- /__tests__/valid.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylelint-scss/stylelint-config-recommended-scss/HEAD/__tests__/valid.scss -------------------------------------------------------------------------------- /eslint.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylelint-scss/stylelint-config-recommended-scss/HEAD/eslint.config.mjs -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylelint-scss/stylelint-config-recommended-scss/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylelint-scss/stylelint-config-recommended-scss/HEAD/package.json --------------------------------------------------------------------------------