From 36af0266a9d602d44d7e99dbb96f09c03b9baf10 Mon Sep 17 00:00:00 2001 From: Shinnosuke Watanabe Date: Fri, 2 Dec 2016 20:40:55 +0900 Subject: [PATCH 1/2] add links to gulp/Metalsmith plugins gulp-svelte https://github.com/shinnn/gulp-svelte https://www.npmjs.com/package/gulp-svelte metalsmith-svelte https://github.com/shinnn/metalsmith-svelte https://www.npmjs.com/package/metalsmith-svelte --- README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/README.md b/README.md index b167284c67..16490fecf3 100644 --- a/README.md +++ b/README.md @@ -9,6 +9,8 @@ This is the Svelte compiler, which is primarily intended for authors of tooling * [svelte-cli](https://github.com/sveltejs/svelte-cli) – Command line interface for compiling components * [rollup-plugin-svelte](https://github.com/rollup/rollup-plugin-svelte) – Rollup plugin * [sveltify](https://github.com/tehshrike/sveltify) - Browserify transform +* [gulp-svelte](https://github.com/shinnn/gulp-svelte) - gulp plugin +* [metalsmith-svelte](https://github.com/shinnn/metalsmith-svelte) - Metalsmith plugin * More to come! From f8395748bedafb8234743e1be9d7808be8bf4bc3 Mon Sep 17 00:00:00 2001 From: Shinnosuke Watanabe Date: Fri, 2 Dec 2016 20:49:58 +0900 Subject: [PATCH 2/2] add .json extension to the ESLint config file According to the ESLint release note http://eslint.org/blog/2015/11/eslint-v1.10.0-released#configuration-file-formats): > We are formally deprecating use of the `.eslintrc` extensionless configuration file format in favor the format-specific versions. Don't worry, we'll still support `.eslintrc` files for a long time, but we'd like to encourage everyone to move to the new file formats as you'll get advantages such as syntax highlighting and error detection with many editors. Actually, Github doesn't highlight `.eslintrc` contents, but does well for `.eslintrc.yml`. https://github.com/stylelint/stylelint/blob/59681635dc653a8d92cefa33e113438a0df73456/.eslintrc https://github.com/stylelint/stylelint/blob/72e007a88fc765194fc429467cade14680cdb0ac/.eslintrc.yml --- .eslintrc => .eslintrc.json | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename .eslintrc => .eslintrc.json (100%) diff --git a/.eslintrc b/.eslintrc.json similarity index 100% rename from .eslintrc rename to .eslintrc.json