{"id":18274761,"url":"https://github.com/liuderchi/ide-css","last_synced_at":"2025-04-05T03:30:42.669Z","repository":{"id":25518846,"uuid":"104233383","full_name":"liuderchi/ide-css","owner":"liuderchi","description":":atom: Atom-IDE for CSS, LESS and SCSS language","archived":false,"fork":false,"pushed_at":"2024-05-09T09:39:03.000Z","size":274,"stargazers_count":16,"open_issues_count":24,"forks_count":1,"subscribers_count":4,"default_branch":"main","last_synced_at":"2025-03-20T21:26:59.842Z","etag":null,"topics":["atom-editor","atom-ide","atom-package","atom-plugin","css","language-server-protocol"],"latest_commit_sha":null,"homepage":"https://atom.io/packages/ide-css","language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/liuderchi.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":"CONTRIBUTING.md","funding":null,"license":null,"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":"2017-09-20T15:26:20.000Z","updated_at":"2024-07-01T07:37:51.000Z","dependencies_parsed_at":"2023-01-14T02:52:57.474Z","dependency_job_id":"b064b7cc-be34-4a73-bcc7-03b9ae294669","html_url":"https://github.com/liuderchi/ide-css","commit_stats":null,"previous_names":[],"tags_count":12,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/liuderchi%2Fide-css","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/liuderchi%2Fide-css/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/liuderchi%2Fide-css/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/liuderchi%2Fide-css/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/liuderchi","download_url":"https://codeload.github.com/liuderchi/ide-css/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":247284911,"owners_count":20913691,"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":["atom-editor","atom-ide","atom-package","atom-plugin","css","language-server-protocol"],"created_at":"2024-11-05T12:10:40.896Z","updated_at":"2025-04-05T03:30:40.848Z","avatar_url":"https://github.com/liuderchi.png","language":"JavaScript","readme":"# ide-css\n\n[![apm-download-count][apm-download-count]][apm-download-link]\n[![ci-status][ci-status]][ci-link]\n[![dependency-status][david-status]][david-project]\n\nAtom-IDE for CSS, LESS and SCSS language\n\n![demo1][demo1]\n\n![demo2][demo2]\n\n## Features\n\n  - CSS rules Outline in *Outline View*\n      - Quick navigation by clicking\n      - Quick CSS rule selection by double clicking\n      - Searching by entering element name or class name in selector\n  - Tooltips for\n      - CSS selector\n      - CSS property\n      - Linter message\n  - Support other CSS preprocessor grammars: LESS, SCSS\n\n\n## Requirements\n\nyou need to install following requirements before installing [`ide-css`][apm-download-link]:\n\n  - Atom editor *1.21.0-beta0* or higher version\n  - Atom package [`atom-ide-ui`][atom-ide-ui]\n\n\n## FAQ\n\n\u003e Why I could not download this Atom package?\n\nPlease make sure you have installed all softwares in [*Requirements*](#requirements) section.\n\n---\n\n\u003e I've installed ide-css. Why there is still nothing shown in Outline View when css opened?\n\nPlease check the file exists in the *Project Tree View* so that it can be handled by [`ide-css`][apm-download-link].\n\nIn addition, to show outline view, use Atom command `Outline View: Toggle`.\n\n---\n\n\u003e How can I customize this package?\n\nPlease read [CONTRIBUTING.md][CONTRIBUTING.md] for more details.\n\n---\n\n  - :confused: Still feeling confused? Please [provide feedbacks via issues][create-issue] to make ide-css better. :pray:\n\n\n## Notes and References\n  - [`ide-css`][apm-download-link] acts as a *client* of language server basing on [`atom-languageclient`][atom-languageclient]\n  - [`vscode-css-languageserver-bin`][vscode-css-languageserver-bin] acts as a *language server* and analyze your CSS in separate process\n  - language servers and clients are talking with [Language Server Protocol (LSP)][lsp]\n\n\n## License\n\n[MIT License][mit-license]\n\n\n[apm-download-count]: https://img.shields.io/apm/dm/ide-css.svg \"apm-download-count\"\n[apm-download-link]: https://atom.io/packages/ide-css \"apm-download-link\"\n[ci-status]: https://github.com/liuderchi/ide-css/actions/workflows/ci.yml/badge.svg \"ci-status\"\n[ci-link]: https://github.com/liuderchi/ide-css/actions \"ci-link\"\n[david-status]: https://david-dm.org/liuderchi/ide-css.svg \"david-status\"\n[david-project]: https://david-dm.org/liuderchi/ide-css \"david-project\"\n[demo1]: https://user-images.githubusercontent.com/4994705/30840126-2a71c32a-a23b-11e7-8dd4-9189723c438a.png \"demo1\"\n[demo2]: https://user-images.githubusercontent.com/4994705/30840198-864c7fb4-a23b-11e7-9db7-0c9239b83205.png \"demo2\"\n\n[atom-ide-ui]: https://atom.io/packages/atom-ide-ui \"atom-ide-ui\"\n[CONTRIBUTING.md]: https://github.com/liuderchi/ide-css/blob/main/CONTRIBUTING.md \"CONTRIBUTING.md\"\n[create-issue]: https://github.com/liuderchi/ide-css/issues/new \"create-issue\"\n\n[atom-languageclient]: https://github.com/atom/atom-languageclient \"atom-languageclient\"\n[vscode-css-languageserver-bin]: https://github.com/vscode-langservers/vscode-css-languageserver-bin \"vscode-css-languageserver-bin\"\n[lsp]: http://langserver.org/ \"lsp\"\n\n[mit-license]: https://liuderchi.mit-license.org/ \"mit-license\"\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fliuderchi%2Fide-css","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fliuderchi%2Fide-css","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fliuderchi%2Fide-css/lists"}