From b4fea2a3d62da5e2e3f90d7f2109f02f927f7174 Mon Sep 17 00:00:00 2001 From: Vse Mozhet Byt Date: Fri, 21 Apr 2017 22:55:51 +0300 Subject: doc: add eslint-plugin-markdown * install eslint-plugin-markdown * add doc/.eslintrc.yaml * add `` or `` for the rest of problematic code * .js files in doc folder added to .eslintignore * update Makefile and vcbuild.bat PR-URL: https://github.com/nodejs/node/pull/12563 Refs: https://github.com/nodejs/node/pull/12557#issuecomment-296015032 Reviewed-By: Teddy Katz Reviewed-By: James M Snell Reviewed-By: Timothy Gu Reviewed-By: Gibson Fahnestock Reviewed-By: Yuta Hiroto --- tools/icu/README.md | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) (limited to 'tools/icu') diff --git a/tools/icu/README.md b/tools/icu/README.md index ed540c6725..c70fa4ee42 100644 --- a/tools/icu/README.md +++ b/tools/icu/README.md @@ -25,8 +25,10 @@ make test-ci ``` Also running + + ```js - new Intl.DateTimeFormat('es',{month:'long'}).format(new Date(9E8)); + new Intl.DateTimeFormat('es', {month: 'long'}).format(new Date(9E8)); ``` …Should return `January` not `enero`. @@ -49,9 +51,11 @@ make ``` - Test this newly default-generated Node.js + + ```js process.versions.icu; -new Intl.DateTimeFormat('es',{month:'long'}).format(new Date(9E8)); +new Intl.DateTimeFormat('es', {month: 'long'}).format(new Date(9E8)); ``` (should return your updated ICU version number, and also `January` again.) -- cgit v1.2.3