{"id":19150442,"url":"https://github.com/vicompany/stylelint-config-vi","last_synced_at":"2026-04-12T18:33:03.889Z","repository":{"id":9648189,"uuid":"62885970","full_name":"vicompany/stylelint-config-vi","owner":"vicompany","description":"Stylelint shareable config used by VI Company","archived":false,"fork":false,"pushed_at":"2023-03-04T02:25:02.000Z","size":674,"stargazers_count":0,"open_issues_count":2,"forks_count":1,"subscribers_count":6,"default_branch":"master","last_synced_at":"2025-02-03T18:51:10.010Z","etag":null,"topics":["config","css","linter","linter-config","sass","stylelint"],"latest_commit_sha":null,"homepage":"","language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/vicompany.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2016-07-08T12:07:50.000Z","updated_at":"2022-05-17T09:34:29.000Z","dependencies_parsed_at":"2024-11-09T08:12:11.541Z","dependency_job_id":"ce029bc3-7a0b-4f9f-929b-a906a66677e7","html_url":"https://github.com/vicompany/stylelint-config-vi","commit_stats":{"total_commits":95,"total_committers":5,"mean_commits":19.0,"dds":0.4631578947368421,"last_synced_commit":"17cde1a62f48affdf5beb5e9537adf7e2554398a"},"previous_names":[],"tags_count":33,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/vicompany%2Fstylelint-config-vi","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/vicompany%2Fstylelint-config-vi/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/vicompany%2Fstylelint-config-vi/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/vicompany%2Fstylelint-config-vi/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/vicompany","download_url":"https://codeload.github.com/vicompany/stylelint-config-vi/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":240236202,"owners_count":19769572,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["config","css","linter","linter-config","sass","stylelint"],"created_at":"2024-11-09T08:12:03.304Z","updated_at":"2026-04-12T18:32:58.865Z","avatar_url":"https://github.com/vicompany.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# stylelint-config-vi\n\n[![npm](https://img.shields.io/npm/v/stylelint-config-vi.svg)](https://npm.im/stylelint-config-vi)\n[![Build Status](https://travis-ci.org/vicompany/stylelint-config-vi.svg?branch=master)](https://travis-ci.org/vicompany/stylelint-config-vi)\n\nThis package provides a [Stylelint shareable config](http://stylelint.io/user-guide/configuration/#extends) for the VI Company's Sass coding style.\n\n## Installation\n\nTo make use of this config, install Stylelint and this package as a development dependency of your project:\n\n    npm i stylelint stylelint-config-vi -D\n\n## Usage\n\nCreate a [`.stylelintrc.js`](http://stylelint.io/user-guide/configuration/#configuration) config file in the root of the project:\n\n### .stylelintrc.js\n```js\nmodule.exports = {\n  extends: 'stylelint-config-vi'\n};\n```\n## Migration to Stylelint 14.0.0\n\nIf you use Stylelint to lint anything other than CSS files, you will need to install and configure these syntaxes.\n\n### SCSS\n\nInstall the [PostCSS SCSS Syntax](https://github.com/postcss/postcss-scss):\n\n    npm i postcss postcss-scss -D\n\nUpdate your `.stylelintrc.js` file\n\n### .stylelintrc.js\n```js\nmodule.exports = {\n  extends: 'stylelint-config-vi',\n  overrides: [\n    {\n      files: ['**/*.scss'],\n      customSyntax: 'postcss-scss',\n    },\n  ],\n};\n```\nAdd the [language identifiers](https://code.visualstudio.com/docs/languages/overview#_language-identifier) you want to validate  using the `stylelint.validate` option:\n1. To the **Workspace Settings**: `Ctrl+Shift+P` and select **Preferences: Open Workspace Settings (JSON)**\n2. Or **User settings**: `Ctrl+Shift+P` and select **Preferences: Open Settings (JSON)`**\n\n### Example VS Code config\n```json\n{\n  \"stylelint.validate\": [\"css\", \"postcss\", \"scss\"]\n}\n```\n\n### Vue.js\n\nInstall the [PostCSS HTML Syntax](https://github.com/gucong3000/postcss-html):\n\n    npm i postcss-html -D\n\nUpdate your `.stylelintrc.js` file\n\n### .stylelintrc.js\n```js\nmodule.exports = {\n  extends: 'stylelint-config-vi',\n  overrides: [\n    {\n      files: ['**/*.vue'],\n      customSyntax: 'postcss-html',\n    },\n  ],\n};\n```\nAdd the [language identifiers](https://code.visualstudio.com/docs/languages/overview#_language-identifier) you want to validate  using the `stylelint.validate` option:\n1. To the **Workspace Settings**: `Ctrl+Shift+P` and select `Preferences: Open Workspace Settings (JSON)`\n2. Or **User settings**: `Ctrl+Shift+P` and select `Preferences: Open Settings (JSON)`\n\n### Example VS Code config\n```json\n{\n  \"stylelint.validate\": [\"css\", \"postcss\", \"vue\"]\n}\n```\n\n### References\n- [Stylelint migration guide to 14.0.0](https://stylelint.io/migration-guide/to-14)\n- [vscode-stylelint migration guide](https://marketplace.visualstudio.com/items?itemName=stylelint.vscode-stylelint\u0026ssr=false#user-content-migrating-from-vscode-stylelint-0.x%2Fstylelint-13.x)\n\n## License\n\nMIT © [VI Company](http://vicompany.nl)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fvicompany%2Fstylelint-config-vi","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fvicompany%2Fstylelint-config-vi","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fvicompany%2Fstylelint-config-vi/lists"}