{"id":16327086,"url":"https://github.com/mrmlnc/vscode-doiuse","last_synced_at":"2025-03-22T22:31:06.631Z","repository":{"id":66009373,"uuid":"63163937","full_name":"mrmlnc/vscode-doiuse","owner":"mrmlnc","description":":electric_plug: Lint CSS for browser support against caniuse database. ","archived":false,"fork":false,"pushed_at":"2018-08-30T06:15:28.000Z","size":111,"stargazers_count":13,"open_issues_count":3,"forks_count":1,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-03-18T15:21:30.984Z","etag":null,"topics":["doiuse","visual-studio-code","vscode","vscode-extension"],"latest_commit_sha":null,"homepage":"https://goo.gl/qBPxgx","language":"TypeScript","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/mrmlnc.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-12T14:17:33.000Z","updated_at":"2025-02-09T06:41:49.000Z","dependencies_parsed_at":null,"dependency_job_id":"3c4310af-c360-47a3-ac0f-17db9ccb16db","html_url":"https://github.com/mrmlnc/vscode-doiuse","commit_stats":null,"previous_names":[],"tags_count":9,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mrmlnc%2Fvscode-doiuse","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mrmlnc%2Fvscode-doiuse/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mrmlnc%2Fvscode-doiuse/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mrmlnc%2Fvscode-doiuse/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/mrmlnc","download_url":"https://codeload.github.com/mrmlnc/vscode-doiuse/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":245028475,"owners_count":20549524,"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":["doiuse","visual-studio-code","vscode","vscode-extension"],"created_at":"2024-10-10T23:10:21.684Z","updated_at":"2025-03-22T22:31:06.340Z","avatar_url":"https://github.com/mrmlnc.png","language":"TypeScript","funding_links":["https://paypal.me/mrmlnc"],"categories":[],"sub_categories":[],"readme":"# VS Code plugin for doiuse\n\n\u003e This linter plugin for VS Code provides an interface to [doiuse](https://github.com/anandthakker/doiuse)\n\n![doiuse](https://cloud.githubusercontent.com/assets/7034281/16776880/0282e982-4870-11e6-811f-a2a65cbc4eb7.png)\n\n## Donate\n\nIf you want to thank me, or promote your Issue.\n\n[![Donate](https://img.shields.io/badge/Donate-PayPal-green.svg)](https://paypal.me/mrmlnc)\n\n\u003e Sorry, but I have work and support for plugins and modules requires some time after work. I will be glad of your support or PR's.\n\n## Install\n\nLinter installation is performed in several stages:\n\n  1. Install **doiuse** use `npm i -D doiuse` or `npm i -g doiuse`.\n  2. Press \u003ckbd\u003eF1\u003c/kbd\u003e and select `Extensions: Install Extensions`.\n  3. Search and choose `vscode-doiuse`.\n\nSee the [extension installation guide](https://code.visualstudio.com/docs/editor/extension-gallery) for details.\n\n## Usage\n\nEnable the linter in the VS Code [settings](https://code.visualstudio.com/docs/customization/userandworkspace).\n\n```json\n{\n  \"doiuse.enable\": true\n}\n```\n\n## Supported languages\n\n  * CSS\n  * Less\n  * SCSS\n  * Sass (experimental and by [sass-indented](https://marketplace.visualstudio.com/items?itemName=robinbentley.sass-indented))\n  * Stylus (experimental, only indent-based CSS syntax and by [extensions](https://marketplace.visualstudio.com/search?term=stylu\u0026target=VSCode\u0026sortBy=Relevance))\n\n## Supported settings\n\n**doiuse.enable**\n\n  * Type: `Boolean`\n  * Default: `false`\n\nControl whether doiuse is enabled for styles files or not.\n\n**doiuse.messageLevel**\n\n  * Type: `String`\n  * Default: `Warning`\n  * Available values: `\"Information\", \"Warning\", \"Error\"`\n\nRepresents a diagnostic level, such as a Information, Warning or Error.\n\n**doiuse.browsers**\n\n  * Type: `Array`\n  * Default: `[]`\n  * Example: `[\"ie \u003e= 9\"]`\n\nAn autoprefixer-like array of browsers. See the [official repository](https://github.com/anandthakker/doiuse) for details.\n\nThrough the config files of _browserslist_, it is also possible to define the scope per folder, however, the above VSCode setting has priority over these files.\n\n**doiuse.ignore**\n\n  * Type: `Array`\n  * Default: `[]`\n  * Example: `[\"rem\"]`\n\nAn optional array of features to ignore. See the [official repository](https://github.com/anandthakker/doiuse) for details.\n\n**doiuse.ignoreFiles**\n\n  * Type: `Array`\n  * Default: `[]`\n  * Example: `[\"**/*.css\"]`\n\nAn optional array of file globs to match against original source file path, to ignore. See the [official repository](https://github.com/anandthakker/doiuse) for details.\n\n**doiuse.run**\n\n  * Type: `String`\n  * Default: `onType`\n  * Supported values: `onType`, `onSave`\n\nRun the linter on save (onSave) or on type (onType).\n\n## Changelog\n\nSee the [Releases section of our GitHub project](https://github.com/mrmlnc/vscode-doiuse/releases) for changelogs for each release version.\n\n## License\n\nThis software is released under the terms of the MIT license.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmrmlnc%2Fvscode-doiuse","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmrmlnc%2Fvscode-doiuse","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmrmlnc%2Fvscode-doiuse/lists"}