From 8aef25da0d4899d57bff7ac6c292d9df4ab0fdf4 Mon Sep 17 00:00:00 2001 From: HaveF Date: Mon, 7 Nov 2016 09:45:08 +0800 Subject: [PATCH] [doc]fix path of eslintrc and stylelintrc --- docs/commands.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/commands.md b/docs/commands.md index 32171308e..345df70dc 100644 --- a/docs/commands.md +++ b/docs/commands.md @@ -143,7 +143,7 @@ The `lint` command lints all files in the `src/` directory using ESLint. During `setup`, an `.eslintrc.json` file is copied into the root of your app which extends kyt's base configuration. You can add or update any rules in this file. -kyt's base ESLint config extends [Airbnb](https://github.com/airbnb/javascript) with a few overrides. You can find kyt's base ESLint configuration [here](/config/.eslintrc.json). +kyt's base ESLint config extends [Airbnb](https://github.com/airbnb/javascript) with a few overrides. You can find kyt's base ESLint configuration [here](/config/.eslintrc.base.json). Flags can be passed to ESLint through `kyt lint` @@ -154,7 +154,7 @@ kyt lint -- --fix ## lint-style The `lint-style` command uses Stylelint to lint all files in the `src/` directory. By convention, it looks for files with a `.css` or `.scss` extension. -During `setup`, a `.stylelintrc.json` is copied into the root of your app that extends kyt's base configuration, pre-configured with [config-standard](https://github.com/stylelint/stylelint-config-standard) with some overrides for CSS/Sass Modules. You can find kyt's base Stylelint configuration [here](/config/.stylelintrc.json). You can add or update any of the [Stylelint rules](http://stylelint.io/user-guide/rules/) in your `.stylelintrc.json`. +During `setup`, a `.stylelintrc.json` is copied into the root of your app that extends kyt's base configuration, pre-configured with [config-standard](https://github.com/stylelint/stylelint-config-standard) with some overrides for CSS/Sass Modules. You can find kyt's base Stylelint configuration [here](/config/.stylelintrc.base.json). You can add or update any of the [Stylelint rules](http://stylelint.io/user-guide/rules/) in your `.stylelintrc.json`. ## proto