Munieru / MUROOKA Naoki

Results 53 issues of Munieru / MUROOKA Naoki

@nuxt/types package provides type definition for Nuxt configuration. [Configuration (Runtime) | Nuxt TypeScript](https://typescript.nuxtjs.org/cookbook/configuration.html) I think that project with TypeScript should use `nuxt.config.ts` instead `nuxt.config.js`.

Now, there are no rules defined for stylelint. [^1] I think that some rules should be enabled by default like ESLint. ## My idea `@nuxtjs/stylelint-config`: ```js module.exports = { extends:...

## Problem ![スクリーンショット 2019-04-03 18 05 20](https://user-images.githubusercontent.com/20086673/55466904-1cef1300-563b-11e9-9014-5c6c515595b4.png) navigation area (`.navigation`) does not have any background color. So, content area (`.content`) is seen through when scroll page horizontally. ## How to...

- [x] I have searched for [similar issues](https://github.com/raineorshine/npm-check-updates/issues) - [x] I am using the latest version of `npm-check-updates` - [x] I am using `node >= 14` --- I am developing...

out-of-scope

Add [python5.com](https://python5.com/) ## How to get original URL In question page (e.g. [this](https://python5.com/q/lhvnazjr)), ```js document.querySelector('a[href^="https://stackoverflow.com/questions/"]').href ```

Add [366service.com](https://www.366service.com/) ## How to get original URL In question page (e.g. [this](https://www.366service.com/jp/qa/b361445989b5301130eb48b43c74bce9)), ```js document.querySelector('.question-ttl a[rel="nofollow"]').href ``` or ```js document.querySelector('a[href^="https://stackoverflow.com/questions/"][rel="nofollow"]').href ```

Add these. - [it-swarm-ja.tech](https://www.it-swarm-ja.tech) - [it-swarm-ko.tech](https://www.it-swarm-ko.tech) ## How to get original URL In question page (e.g. [this](https://www.it-swarm-ja.tech/ja/mysql/mysql%e3%81%af%e3%80%81csv%e3%83%86%e3%83%bc%e3%83%96%e3%83%ab%e3%82%92%e3%82%a4%e3%83%b3%e3%83%9d%e3%83%bc%e3%83%88%e3%81%99%e3%82%8b%e3%81%a8%e3%81%8d%e3%81%abutf8%e6%96%87%e5%ad%97%e5%88%97%e3%82%92%e7%84%a1%e5%8a%b9%e3%81%ab%e3%81%97%e3%81%be%e3%81%99/830670752/)), ```js document.querySelector('[data-cat="q-source"]').href ``` Probably same to it-swarm.(net|dev|asia|xyz).

Weeks should be expressed as days, isn't it? cf. https://en.wikipedia.org/wiki/ISO_8601#Durations ## Example ```js const duration = Duration.fromObject({ years: 3, months: 6, weeks: 1, days: 4, hours: 12, minutes: 30, seconds:...

issue: enhancement
up for grabs

Both [== vs ===](https://thisthat.dev/equality-operator-vs-strict-equality-operator/) and [Object.is() vs ===](https://thisthat.dev/object-is-vs-strict-equality-operator) mention value equality.

URL : https://github.com/asciidwango/js-primer/blob/master/source/basic/function-scope/README.md ```js // `increment`関数を定義し返す関数 function createCounter() { let count = 0; // `increment`関数は`count`変数を参照 function increment() { count = count + 1; return count; } return increment; } //...

Status: Proposal