{"id":23516551,"url":"https://github.com/truebase-com/artistry","last_synced_at":"2026-04-27T11:31:42.499Z","repository":{"id":123905575,"uuid":"173757716","full_name":"Truebase-com/Artistry","owner":"Truebase-com","description":"Repo for Truebase's code style, \"Artistry\"","archived":false,"fork":false,"pushed_at":"2019-10-09T22:18:13.000Z","size":2387,"stargazers_count":2,"open_issues_count":8,"forks_count":0,"subscribers_count":0,"default_branch":"master","last_synced_at":"2025-05-13T23:47:47.967Z","etag":null,"topics":["eslint","typescript","vscode-theme"],"latest_commit_sha":null,"homepage":"","language":"TypeScript","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/Truebase-com.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"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,"zenodo":null}},"created_at":"2019-03-04T14:14:18.000Z","updated_at":"2019-10-09T22:18:15.000Z","dependencies_parsed_at":null,"dependency_job_id":"79d1ce13-ce80-4f16-bf32-511d3527b344","html_url":"https://github.com/Truebase-com/Artistry","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/Truebase-com/Artistry","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Truebase-com%2FArtistry","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Truebase-com%2FArtistry/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Truebase-com%2FArtistry/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Truebase-com%2FArtistry/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Truebase-com","download_url":"https://codeload.github.com/Truebase-com/Artistry/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Truebase-com%2FArtistry/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32335296,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-26T23:26:28.701Z","status":"online","status_checked_at":"2026-04-27T02:00:06.769Z","response_time":128,"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":["eslint","typescript","vscode-theme"],"created_at":"2024-12-25T15:14:05.461Z","updated_at":"2026-04-27T11:31:42.486Z","avatar_url":"https://github.com/Truebase-com.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Artistry Code Style\n\nThis repository contains the necessary files required to use the Artistry code style. Most code styles (especially [Prettier](https://prettier.io/)) are designed around the belief that while code formatting is something that should be consistent, it isn't something that programmers should spending time thinking about. This seems to be the generally accepted belief within the programming community.\n\nIn one man's humble opinion, this idea is reminiscent of the pre-Apple renaissance era of computing when \"UX\" wasn't an established term, software aesthetic was considered a superfluous nice-to-have, and the prevailing belief  that \"it doesn't matter what it looks like, only that it works\".\n\nThe Artistry code is was designed around the contrarian idea that code formatting and code beauty *is* something that programmers should spend time thinking about. The aesthetic quality of the code in some ways is as important as the algorithms themselves. Writing code in an environment where code aesthetic is intentional, respected, and sought-after breeds a culture of craftsmanship. When code aesthetic isn't a focal point of the team, it tends to breed a culture of carelessness. And while these teams can deliver code assets that *function*, they tend to be lacking in *thoughtfulness*.\n\n\n## Installation\n\n[![NPM](https://nodei.co/npm/artistry-code-style.png)](https://npmjs.org/package/artistry-code-style)\n\nThe default export contains all of our ESLint rules.\n\n**It requires:**\n* [eslint@4.14.0](https://github.com/eslint/eslint)\n\n```\nnpm install artistry-code-style --save-dev\n```\n\nAfter installing, you'll need to include a `.eslintrc.js` file in the root directory of your project that contains the following code:\n\n```javascript\nmodule.exports = {\n\t\"extends\": require.resolve(\"artistry-code-style\"),\n\t\"env\": {\n\t\t\"browser\": true,\n\t\t\"node\": true,\n\t\t\"es6\": true\n\t}\n}\n```\n\n## Contents\n\nThis package contains:\n\n- A JavaScript and CSS file that words in tandem with the [VSCode Custom CSS](https://github.com/be5invis/vscode-custom-css) extension. This extension hacks VS Code to allow you to shoehorn in your own code into the internal Monaco code editor. \n- The `Open Sans Code` font, which is a derivation of the `Open Sans'.\n- ESLint rules\n\n## Formatting Guide\n\nDeveloping ESLint rules to enforce the entire gamut of formatting rules will be a long process. To see an example of how conforming code should be formatted, see [FormattingByExample.ts](./FormattingByExample.ts).\n\n## Development\n\nThis repository is under active development, as we're always adding new ESLint rules. Here are some helpful resources to get started building custom ESLint rules:\n\nhttps://www.kenneth-truyers.net/2016/05/27/writing-custom-eslint-rules/\n\nhttps://flexport.engineering/writing-custom-lint-rules-for-your-picky-developers-67732afa1803\n\nhttps://insideops.wordpress.com/2015/12/08/creating-custom-rules-for-eslint/\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftruebase-com%2Fartistry","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ftruebase-com%2Fartistry","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftruebase-com%2Fartistry/lists"}