From e903d2f98c1a7eb34da452c048995dcea5a6c2e8 Mon Sep 17 00:00:00 2001 From: Ash Guillaume <10384315+ashygee@users.noreply.github.com> Date: Mon, 1 Jul 2019 16:25:54 -0700 Subject: [PATCH 1/2] Updated getting started links re-directed links to up to date npmjs page and primer/css repo --- pages/css/getting-started/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pages/css/getting-started/index.md b/pages/css/getting-started/index.md index 8a0b03b700..c71eedb06a 100644 --- a/pages/css/getting-started/index.md +++ b/pages/css/getting-started/index.md @@ -3,7 +3,7 @@ title: Getting started path: getting-started/index --- -Primer CSS is [open-sourced on GitHub](https://github.com/primer/primer) and [available on npm](https://www.npmjs.com/package/primer). +Primer CSS is [open-sourced on GitHub](https://github.com/primer/css) and [available on npm](https://www.npmjs.com/package/@primer/css). ## Installing via npm From 636c04fb00ee11700b895860b83fb960626f53c0 Mon Sep 17 00:00:00 2001 From: Shawn Allen Date: Tue, 6 Aug 2019 13:05:14 -0700 Subject: [PATCH 2/2] Update linting.md --- pages/css/tools/linting.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/pages/css/tools/linting.md b/pages/css/tools/linting.md index a7d9a315e8..406d987aa0 100644 --- a/pages/css/tools/linting.md +++ b/pages/css/tools/linting.md @@ -25,15 +25,15 @@ Whether you work on `github/github` or not, it's useful to see lint errors local bin/stylelint "app/assets/stylesheets/**/*.scss" --syntax scss ``` -For more advanced usage, we recommend reading the [stylelint user guide](http://stylelint.io/user-guide/) and checking out our [primer stylelint configuration](https://github.com/primer/primer/tree/master/tools/stylelint-config-primer). +For more advanced usage, we recommend reading the [stylelint user guide](http://stylelint.io/user-guide/) and checking out our [primer stylelint configuration](https://github.com/primer/stylelint-config-primer). ### Configuration Stylelint is [configured by a JSON file](http://stylelint.io/user-guide/configuration/) that specifies which linter rules we enforce. If you are working on `github/github`, you don't need to do any setup because the configuration is included within the repository bundle. -We have extracted out our configuration file into a separate repository [primer/stylelint-config-primer](https://github.com/primer/primer/tree/master/tools/stylelint-config-primer). This gives us a central source where we can keep the configuration up-to-date and distribute easily across all our projects. +We have extracted out our configuration file into a separate repository [primer/stylelint-config-primer](https://github.com/primer/stylelint-config-primer). This gives us a central source where we can keep the configuration up-to-date and distribute easily across all our projects. -To [use the configuration](https://github.com/primer/primer/tree/master/tools/stylelint-config-primer#usage) in your project, install the config `npm install --save stylelint-config-primer` via npm, and extend the config in your `.stylelintrc` file. Put the file in the root directory of your project. +To [use the configuration](https://github.com/primer/stylelint-config-primer#usage) in your project, install the config `npm install --save stylelint-config-primer` via npm, and extend the config in your `.stylelintrc` file. Put the file in the root directory of your project. ```json { @@ -41,7 +41,7 @@ To [use the configuration](https://github.com/primer/primer/tree/master/tools/st } ``` -A list of all the specific rules we have enabled are documented in [the package README](https://www.npmjs.com/package/stylelint-config-primer#documentation). +A list of all the specific rules we have enabled are documented in [the package README](https://github.com/primer/stylelint-config-primer#documentation). ### Disabling