{"id":20354768,"url":"https://github.com/superpaintman/exercism-dart","last_synced_at":"2025-08-27T05:17:36.299Z","repository":{"id":79226622,"uuid":"95738413","full_name":"SuperPaintman/exercism-dart","owner":"SuperPaintman","description":"Exercism exercises in Dart","archived":false,"fork":false,"pushed_at":"2017-06-30T09:56:15.000Z","size":25,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-06-07T10:48:20.285Z","etag":null,"topics":["dart","dartlang","exercice","exercism","exercism-dart"],"latest_commit_sha":null,"homepage":"https://github.com/exercism/dart","language":"Dart","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/SuperPaintman.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":"2017-06-29T04:26:41.000Z","updated_at":"2017-07-02T02:18:10.000Z","dependencies_parsed_at":"2023-06-01T17:30:56.715Z","dependency_job_id":null,"html_url":"https://github.com/SuperPaintman/exercism-dart","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/SuperPaintman/exercism-dart","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/SuperPaintman%2Fexercism-dart","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/SuperPaintman%2Fexercism-dart/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/SuperPaintman%2Fexercism-dart/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/SuperPaintman%2Fexercism-dart/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/SuperPaintman","download_url":"https://codeload.github.com/SuperPaintman/exercism-dart/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/SuperPaintman%2Fexercism-dart/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":272294416,"owners_count":24908818,"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","status":"online","status_checked_at":"2025-08-27T02:00:09.397Z","response_time":76,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"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":["dart","dartlang","exercice","exercism","exercism-dart"],"created_at":"2024-11-14T23:09:36.641Z","updated_at":"2025-08-27T05:17:36.266Z","avatar_url":"https://github.com/SuperPaintman.png","language":"Dart","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Exercism Dart Track\n\n[![Linux Build][travis-image]][travis-url]\n\n\u003cp align=\"center\"\u003e\n  \u003ca href=\"https://github.com/SuperPaintman/exercism-dart\"\u003e\n    \u003cimg alt=\"Logo\" src=\"https://raw.githubusercontent.com/SuperPaintman/exercism-dart/master/img/icon.png\"\u003e\n  \u003c/a\u003e\n\u003c/p\u003e\n\nExercism exercises in Dart\n\n\n--------------------------------------------------------------------------------\n\n\n## How to add new exercise\n\n#### 1. Initialize a new exercise\n\n```bash\n# \"bob\" - this is an example slug\n# $ ./tool/create-exercise \u003cslug\u003e\n\n$ ./tool/create-exercise bob\n```\n\n#### 2. Go to `exercism/\u003cslug\u003e` and edit it\n\n```bash\n$ cd exercism/bob\n\n# vim / emacs / code / subl / (other editor)\n$ vim .\n```\n\n\n#### 3. Add the exercise to `config.json`\n\nAdd the exercise to the `config.json` file, by adding an entry to the exercises\narray:\n\n```json\n{\n  \"slug\": \"dart\",\n  \"language\": \"Dart\",\n  \"repository\": \"https://github.com/exercism/dart\",\n  \"active\": true,\n  \"exercises\": [\n    // ...\n    {\n      \"slug\": \"bob\",\n      \"difficulty\": 1,\n      \"topics\": [\n        \"Control flow (conditionals)\",\n        \"Polymorfism\",\n        \"Strings\",\n        \"Unicode\",\n        \"Pattern recognition\",\n        \"Regular expressions\"\n      ]\n    },\n    // ...\n  ],\n  // ...\n}\n\n```\n\n#### 4. Run tests\n\n```bash\n$ pub run test\n```\n\n\n#### 5. Format code\n\n```bash\npub run dart_style:format -l 120 -w .\n```\n\n\n#### 6. Commit and make PR\n\n```bash\n$ git checkout -b feature/exercise-bob\n$ git commit -am 'Added exercise: bob'\n$ git push origin feature/exercise-bob\n```\n\n\n--------------------------------------------------------------------------------\n\n\n## Code Style\n\n#### Follow the [Dart style guide][dart-style-guide-url]\n\n#### Maximum line length - `120`\n\n#### Exercise dirname in [`kebab-case`][letter-case-url]\n\n```bash\n# good\nexercises/complex-numbers\n\n# bad\nexercises/complex_numbers\nexercises/complexNumbers\nexercises/complex\\ numbers\n```\n\n#### Filenames in [`snake_case`][letter-case-url]\n\n```bash\n# good\nexercises/complex-numbers/lib/complex_numbers.dart\nexercises/complex-numbers/test/complex_numbers_test.dart\n\n# bad\nexercises/complex-numbers/lib/complex-numbers.dart\nexercises/complex-numbers/test/complex-numbers_test.dart\n\nexercises/complex-numbers/lib/complexNumbers.dart\nexercises/complex-numbers/test/complexNumbers_test.dart\n\nexercises/complex-numbers/lib/complex\\ numbers.dart\nexercises/complex-numbers/test/complex\\ numbers_test.dart\n```\n\n#### Variables / methods / functions in [`camelCase`][letter-case-url]\n\n```dart\n// good\nvoid complexNumbers() { }\n\n// bad\nvoid complex_numbers() { }\n```\n\n#### Classes in [`PascalCase`][letter-case-url]\n\n```dart\n// good\nclass ComplexNumbers { }\n\n// bad\nclass complexNumbers { }\nclass complex_numbers { }\nclass Complex_numbers { }\n```\n\n#### Constatns in [`UPPER_SNAKE_CASE`][letter-case-url]\n\n```dart\n// good\nconst SECRET_ANSWER = 42;\n\n// bad\nconst secret_answer = 42;\nconst secretAnswer = 42;\nconst SecretAnswer = 42;\n```\n\n\n--------------------------------------------------------------------------------\n\n\n## Contributing\n\n1. Fork it (\u003chttps://github.com/SuperPaintman/exercism-dart/fork\u003e)\n2. Create your feature branch (`git checkout -b feature/exercise-\u003cslug\u003e`)\n3. Commit your changes (`git commit -am 'Added exercise: \u003cslug\u003e'`)\n4. Push to the branch (`git push origin feature/exercise-\u003cslug\u003e`)\n5. Create a new Pull Request\n\n\n--------------------------------------------------------------------------------\n\n\n## Contributors\n\n- [SuperPaintman](https://github.com/SuperPaintman) SuperPaintman - creator, maintainer\n\n\n--------------------------------------------------------------------------------\n\n## License\n\n[MIT][license-url]\n\n\n[license-url]: https://github.com/SuperPaintman/exercism-dart/blob/master/LICENSE\n[travis-image]: https://img.shields.io/travis/SuperPaintman/exercism-dart/master.svg?label=linux\n[travis-url]: https://travis-ci.org/SuperPaintman/exercism-dart\n[dart-style-guide-url]: https://www.dartlang.org/guides/language/effective-dart/style\n[letter-case-url]: https://en.wikipedia.org/wiki/Letter_case#Special_case_styles\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsuperpaintman%2Fexercism-dart","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fsuperpaintman%2Fexercism-dart","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsuperpaintman%2Fexercism-dart/lists"}