This commit is contained in:
azu
2018-02-25 17:57:59 +09:00
commit cfcb486e8e
168 changed files with 1895 additions and 0 deletions

3
.gitignore vendored Normal file
View File

@ -0,0 +1,3 @@
_site
.sass-cache
.jekyll-metadata

24
404.html Normal file
View File

@ -0,0 +1,24 @@
---
layout: default
---
<style type="text/css" media="screen">
.container {
margin: 10px auto;
max-width: 600px;
text-align: center;
}
h1 {
margin: 30px 0;
font-size: 4em;
line-height: 1;
letter-spacing: -1px;
}
</style>
<div class="container">
<h1>404</h1>
<p><strong>Page not found :(</strong></p>
<p>The requested page could not be found.</p>
</div>

22
Gemfile Normal file
View File

@ -0,0 +1,22 @@
source "https://rubygems.org"
# Hello! This is where you manage which Jekyll version is used to run.
# When you want to use a different version, change it below, save the
# file and run `bundle install`. Run Jekyll with `bundle exec`, like so:
#
# bundle exec jekyll serve
#
# This will help ensure the proper Jekyll version is running.
# Happy Jekylling!
gem "jekyll", "~> 3.7.2"
# This is the default theme for new Jekyll sites. You may change this to anything you like.
gem "minima", "~> 2.0"
gem "jekyll-theme-awesome"
# Windows does not include zoneinfo files, so bundle the tzinfo-data gem
gem "tzinfo-data", platforms: [:mingw, :mswin, :x64_mingw, :jruby]
# Performance-booster for watching directories on Windows
gem "wdm", "~> 0.1.0" if Gem.win_platform?

76
Gemfile.lock Normal file
View File

@ -0,0 +1,76 @@
GEM
remote: https://rubygems.org/
specs:
addressable (2.5.2)
public_suffix (>= 2.0.2, < 4.0)
colorator (1.1.0)
concurrent-ruby (1.0.5)
em-websocket (0.5.1)
eventmachine (>= 0.12.9)
http_parser.rb (~> 0.6.0)
eventmachine (1.2.5)
ffi (1.9.23)
forwardable-extended (2.6.0)
http_parser.rb (0.6.0)
i18n (0.9.5)
concurrent-ruby (~> 1.0)
jekyll (3.7.2)
addressable (~> 2.4)
colorator (~> 1.0)
em-websocket (~> 0.5)
i18n (~> 0.7)
jekyll-sass-converter (~> 1.0)
jekyll-watch (~> 2.0)
kramdown (~> 1.14)
liquid (~> 4.0)
mercenary (~> 0.3.3)
pathutil (~> 0.9)
rouge (>= 1.7, < 4)
safe_yaml (~> 1.0)
jekyll-feed (0.9.3)
jekyll (~> 3.3)
jekyll-sass-converter (1.5.2)
sass (~> 3.4)
jekyll-seo-tag (2.4.0)
jekyll (~> 3.3)
jekyll-theme-awesome (0.1.0)
jekyll (~> 3.6)
jekyll-watch (2.0.0)
listen (~> 3.0)
kramdown (1.16.2)
liquid (4.0.0)
listen (3.1.5)
rb-fsevent (~> 0.9, >= 0.9.4)
rb-inotify (~> 0.9, >= 0.9.7)
ruby_dep (~> 1.2)
mercenary (0.3.6)
minima (2.3.0)
jekyll (~> 3.5)
jekyll-feed (~> 0.9)
jekyll-seo-tag (~> 2.1)
pathutil (0.16.1)
forwardable-extended (~> 2.6)
public_suffix (3.0.2)
rb-fsevent (0.10.2)
rb-inotify (0.9.10)
ffi (>= 0.5.0, < 2)
rouge (3.1.1)
ruby_dep (1.5.0)
safe_yaml (1.0.4)
sass (3.5.5)
sass-listen (~> 4.0.0)
sass-listen (4.0.0)
rb-fsevent (~> 0.9, >= 0.9.4)
rb-inotify (~> 0.9, >= 0.9.7)
PLATFORMS
ruby
DEPENDENCIES
jekyll (~> 3.7.2)
jekyll-theme-awesome
minima (~> 2.0)
tzinfo-data
BUNDLED WITH
1.16.0

11
_config.yml Normal file
View File

@ -0,0 +1,11 @@
# See https://jekyllrb.com/docs/configuration/
title: Proofdict
description: >-
Proofdict online
baseurl: "" # the subpath of your site, e.g. /blog
url: "" # the base hostname & protocol for your site, e.g. http://example.com
# Build settings
markdown: kramdown
#theme: minima
theme: jekyll-theme-awesome

View File

@ -0,0 +1,14 @@
id: 01BQ92YZ6QR8RJKA5Y8W2F9NMY
description: 'Reference https://webkit.org/'
expected: WebKit
patterns:
- /webkit/i
specs:
- from: これはwebkitです
to: これはWebKitです
- from: XXXwebkit
to: XXXwebkit
- from: node-webkit
to: node-webkit
tags:
- noun

View File

@ -0,0 +1,8 @@
id: 01BQ92YZ6NT1NACB4X0DC8XHFH
description: ''
expected: $1 EAP
patterns:
- '/([0-9\.]+)EAP/'
specs: []
tags:
- noun

View File

@ -0,0 +1,11 @@
id: 01BQ92YWWJW5M546Z0VEDHG0RZ
description: 漢字で書かず、ひらがなで書くと読みやすくなります
expected: $1あとで
patterns:
- /(して|した|、)後で/
specs:
- from: して後で
to: してあとで
tags:
- opinion
- 表記統一

View File

@ -0,0 +1,15 @@
id: 01BQ92YWWKSTXDNGWVVE10WF9T
description: ''
expected: $1さらに
patterns:
- '/([\s。、\nぁ-んァ-ヶ])更に/'
specs:
- from: Aは加速した、更に加速した。
to: Aは加速した、さらに加速した。
- from: 加速すると更に加速した
to: 加速するとさらに加速した
- from: 変更に加えて
to: 変更に加えて
tags:
- opinion
- 表記統一

View File

@ -0,0 +1,13 @@
id: 01BQ92YWWTK677A7VET6EJJF0S
description: ''
expected: $1だす
patterns:
- /(うり|売り|送り|さし|差し|造り|創り|とり|取り|はき|よび|呼び|よみ|読み|動き|笑い)出す/
specs:
- from: (例)動き出す。
to: (例)動きだす。
- from: (例)笑い出す。
to: (例)笑いだす。
tags:
- opinion
- 表記統一

View File

@ -0,0 +1,13 @@
id: 01BQ92YWWVFK5YDWZ46R2W1M5Y
description: ''
expected: $1つき
patterns:
- /(手|目|腰)付き/
specs:
- from: 目付き。
to: 目つき。
- from: 手付き。
to: 手つき。
tags:
- opinion
- 表記統一

View File

@ -0,0 +1,9 @@
id: 01BQ92YWWV2VVD5WZ1B8TFTBQP
description: ''
expected: $1とおり
patterns:
- /(思った|以下の)通り/
specs: []
tags:
- opinion
- 表記統一

View File

@ -0,0 +1,33 @@
id: 01BQ92YWWJ9EM0EEGVP0CRKC73
description: 漢字で書かず、ひらがなで書くと読みやすくなります
expected: $1とき
patterns:
- /(の)時(?!点|代|々|間)/
specs:
- from: その時
to: そのとき
- from: その時点
to: その時点
- from: その時代
to: その時代
- from: それまでの時間
to: それまでの時間
- from: 同時
to: 同時
- from: 実行時
to: 実行時
- from: 利用時
to: 利用時
- from: 開発時
to: 開発時
- from: 執筆時
to: 執筆時
- from: 時点
to: 時点
- from: 時代
to: 時代
- from: 時間
to: 時間
tags:
- opinion
- 表記統一

View File

@ -0,0 +1,9 @@
id: 01BQ92YWWJNVMAHA0W2Q592SAF
description: 漢字で書かず、ひらがなで書くと読みやすくなります
expected: $1ように
patterns:
- /(の)様に/
specs: []
tags:
- opinion
- 表記統一

View File

@ -0,0 +1,9 @@
id: 01BQ92YWJG32Z679PF9CHJJD5R
description: ''
expected: $1デフォルトで有効$2
patterns:
- '/(?:(が)デフォルト有効)|(?:デフォルト有効(に))/'
specs: []
tags:
- opinion
- jser.info

View File

@ -0,0 +1,9 @@
id: 01BQ92YWWH8TVT2N8FT61TTDNH
description: ひらがなで書かず、漢字で書くと読みやすくなります
expected: $1中
patterns:
- /(その)なか/
specs: []
tags:
- opinion
- 表記統一

View File

@ -0,0 +1,9 @@
id: 01BQ92YWWRZAQH7M4QN2T8W7Y7
description: ''
expected: $1中
patterns:
- /(世界|日)じゅう/
specs: []
tags:
- opinion
- 表記統一

View File

@ -0,0 +1,13 @@
id: 01BQ92YWWT86VKCFD2GCM3KWV4
description: (動詞の場合)漢字を使う
expected: $1付く
patterns:
- /(気が|利子が)つく/
specs:
- from: 気がつく。
to: 気が付く。
- from: 利子がつく。
to: 利子が付く。
tags:
- opinion
- 表記統一

View File

@ -0,0 +1,9 @@
id: 01BQ92YWJF8WXN0M9FE0S4QYW5
description: ''
expected: $1発売
patterns:
- /(\d+年\d+月\d+日)\s発売/
specs: []
tags:
- opinion
- jser.info

View File

@ -0,0 +1,11 @@
id: 01BQ92YWWV1AKBHZDQ6D9GA3ZQ
description: (数詞に付く場合)は漢字を使う
expected: $1通り
patterns:
- /(\d)とおり/
specs:
- from: (例)2とおりの方法
to: (例)2通りの方法
tags:
- opinion
- 表記統一

View File

@ -0,0 +1,14 @@
id: 01BQ92YYBJXRCA80R6BCA4SS7K
description: 'Angular(1.x)'
expected: Angular
patterns:
- /angular/i
specs:
- from: angular
to: Angular
# different term
- from: angulardart
to: angulardart
tags:
- noun
- JavaScript

View File

@ -0,0 +1,11 @@
id: 01BQ92YYBJDYYAR7DFH7M57G1P
description: 'AngularJS(2.0~)'
expected: AngularJS
patterns:
- /Angular\.js/i
- /angularjs/i
specs:
- from: Angular.js
to: AngularJS
tags:
- JavaScript

View File

@ -0,0 +1,8 @@
id: 01BQ92YXWQDKGCA9W74SKW7VST
description: ''
expected: Arrow Function
patterns:
- Array Function
specs: []
tags:
- typo

View File

@ -0,0 +1,8 @@
id: 01BQ92YXWP2ZS8E46DY1Q8RD93
description: ''
expected: Chromium
patterns:
- Chronium
specs: []
tags:
- typo

View File

@ -0,0 +1,10 @@
id: 01BQ92YXWR8T1QBP2JSKFH74RK
description: ''
expected: CoffeeScript
patterns:
- CoffeScript
specs:
- from: CoffeScriptからES6
to: CoffeeScriptからES6
tags:
- typo

View File

@ -0,0 +1,10 @@
id: 01BQ92YXWVMAMKQ3VK2DNYNCCP
description: ''
expected: Custom
patterns:
- /Custome\b/i
specs:
- from: WebVRをCustome Elementのタグで書く
to: WebVRをCustom Elementのタグで書く
tags:
- typo

View File

@ -0,0 +1,12 @@
id: 01BQ92YYBEFBXEHH8T8HC8RCRD
description: 'Reference https://www.ecma-international.org/publications/standards/Ecma-262.htm'
expected: ECMAScript $1
patterns:
- /ECMAScript([0-9]+)/i
- /ECMA Script([0-9]+)/i
specs:
- from: ECMASCRIPT5
to: ECMAScript 5
tags:
- noun
- JavaScript

View File

@ -0,0 +1,10 @@
id: 01BQ92YYBGZPBHMB3DMMXMJ0CJ
description: ''
expected: ES.next
patterns:
- ES next
specs:
- from: ES nextでは
to: ES.nextでは
tags:
- JavaScript

View File

@ -0,0 +1,10 @@
id: 01BQ92YYBGSXM66TN1ZSJH177M
description: ''
expected: ES6 Classes
patterns:
- /\bES6 classes\b/i
specs:
- from: ES6 classes
to: ES6 Classes
tags:
- JavaScript

View File

@ -0,0 +1,8 @@
id: 01BQ92YYBGQBRYXEZK5ZRRK1WW
description: ''
expected: Ecma標準
patterns:
- ECMA標準
specs: []
tags:
- JavaScript

View File

@ -0,0 +1,11 @@
id: 01BQ92YYBJCY50GECA6CQH874F
description: 'Reference https://www.emberjs.com/'
expected: Ember.js
patterns:
- /Ember\.js/i
specs:
- from: ember.js
to: Ember.js
tags:
- noun
- JavaScript

View File

@ -0,0 +1,11 @@
id: 01BQ92YW6Y5KA9YRC4HRPWZTVV
description: ''
expected: Flexbox
patterns:
- Fluxbox
specs:
- from: CSS Fluxboxでは
to: CSS Flexboxでは
tags:
- noun
- CSS

View File

@ -0,0 +1,10 @@
id: 01BQ92YXWFVPNRGMBZ3RZNN1RD
description: ''
expected: Foundation
patterns:
- Fundation
specs:
- from: Fundation
to: Foundation
tags:
- typo

View File

@ -0,0 +1,11 @@
id: 01BQ92YYSHHTGFD78FF7NB4RX9
description: ''
expected: HTML5 Rocks
patterns:
- /HTML5Rocks/i
- /HTML5Rock/i
specs:
- from: HTML5Rockに現在公開されている翻訳記事のまとめ
to: HTML5 Rocksに現在公開されている翻訳記事のまとめ
tags:
- noun

View File

@ -0,0 +1,11 @@
id: 01BQ92YYBHA4FM6A82V2ZT0V91
description: 'Reference https://www.w3.org/TR/html-imports/'
expected: HTML Imports
patterns:
- /HTML Import/i
specs:
- from: HTML import
to: HTML Imports
tags:
- noun
- JavaScript

View File

@ -0,0 +1,12 @@
id: 01BQMSTDZCWH8P81E7PBG9BMQS
description: importのtypoです
expected: Import
patterns:
- Impport
specs:
- from: Dynamic Impport
to: Dynamic Import
- from: Impporter
to: Importer
tags:
- typo

View File

@ -0,0 +1,13 @@
id: 01BQ92YYBHB83ZNFWK5WBA58B7
description: ''
expected: JavaScript
patterns:
- /Java Script/i
specs:
- from: java script
to: JavaScript
- from: Java script
to: JavaScript
tags:
- noun
- JavaScript

View File

@ -0,0 +1,10 @@
id: 01BQ92YYSD9K713DCXTFGNDENS
description: 'Reference https://leanpub.com/'
expected: Leanpub
patterns:
- /leanpub/i
specs:
- from: leanpub
to: Leanpub
tags:
- noun

View File

@ -0,0 +1,12 @@
id: 01BSADQQDT7DEBJT25555YCQ14
description: 'Reference https://www.mysql.com/'
expected: MySQL
patterns:
- /mysql/i
specs:
- from: mysql is a database.
to: MySQL is a database.
- from: Oracle mysql
to: Oracle MySQL
tags:
- noun

View File

@ -0,0 +1,10 @@
id: 01BQ92YZ6Q0Y22BVKAVFC4VV1N
description: 'Reference http://ocaml.org/'
expected: OCaml
patterns:
- /OCaml/i
specs:
- from: ocaml
to: OCaml
tags:
- noun

View File

@ -0,0 +1,10 @@
id: 01BQ92YYSF66CHGRP4MX5X6P0Q
description: O'reilly is OK. But oreilly is not OK
expected: Oreilly
patterns:
- /Oreilly/i
specs:
- from: oreilly
to: Oreilly
tags:
- noun

View File

@ -0,0 +1,10 @@
id: 01BQ92YXWTM3A3CG10MT3FCD55
description: ''
expected: Performance
patterns:
- /peformance/i
specs:
- from: ブラウザ上でどうやって計測するかやPeformance Timelineなどの仕様について
to: ブラウザ上でどうやって計測するかやPerformance Timelineなどの仕様について
tags:
- typo

View File

@ -0,0 +1,16 @@
id: 01BQ92YYBH2EZP1E4KVNDMXYV9
description: ''
expected: Pointer Events
patterns:
- /pointer event/i
- /pointer events/i
specs:
- from: MSEdgeの対応、pointer eventsなど対応、
to: MSEdgeの対応、Pointer Eventsなど対応、
- from: MSEdgeの対応、pointer eventなど対応、
to: MSEdgeの対応、Pointer Eventsなど対応、
- from: pointer-events
to: pointer-events
tags:
- JavaScript
- noun

View File

@ -0,0 +1,11 @@
id: 01BQ92YW70P4BSGE4ZBMKECATV
description: ''
expected: PostCSS
patterns:
- /PostCSS/i
specs:
- from: postcss
to: PostCSS
tags:
- noun
- CSS

View File

@ -0,0 +1,10 @@
id: 01BQ92YXWQ02R8SE1ZZHCG89P5
description: ''
expected: Property
patterns:
- /propety/i
specs:
- from: propety
to: Property
tags:
- typo

View File

@ -0,0 +1,12 @@
id: 01BQ92YYBJVSG9KXZ337FNKFVZ
description: ''
expected: Redux
patterns:
- /redux(?!-)/i
specs:
- from: redux
to: Redux
- from: redux-react
to: redux-react
tags:
- JavaScript

View File

@ -0,0 +1,8 @@
id: 01BQ92YYSHMN57CX27SAJQT2W0
description: ''
expected: Sauce Labs
patterns:
- SauceLabs
specs: []
tags:
- noun

View File

@ -0,0 +1,13 @@
id: 01BQ92YYBHGYFTTDANV4RNC3CJ
description: 'Should have a space between words. Reference https://github.com/w3c/ServiceWorker'
expected: $1 $2
patterns:
- /(service)(worker)/i
specs:
- from: This is serviceworker?
to: This is service worker?
- from: ServiceWorker
to: Service Worker
tags:
- noun
- JavaScript

View File

@ -0,0 +1,14 @@
id: 01BQ92YYBJBBNRPR2WYHMDYPPG
description: 'Reference http://source-map.github.io/'
expected: Source Map
patterns:
- /Source Map/i
- /SourceMap/i
specs:
- from: 多段SourceMapに対応
to: 多段Source Mapに対応
- from: SourceMap
to: Source Map
tags:
- noun
- JavaScript

View File

@ -0,0 +1,11 @@
id: 01BQ92YYBJK6WW9Y09W7TF1YTT
description: 'See http://todomvc.com/'
expected: TodoMVC
patterns:
- /todomvc/i
specs:
- from: todomvc is todo app.
to: TodoMVC is todo app.
tags:
- noun
- JavaScript

View File

@ -0,0 +1,12 @@
id: 01BQ92YYBH2H42AT29Y4BP84FA
description: 'Reference https://www.w3.org/TR/touch-events/'
expected: Touch Events
patterns:
- /Touch Event/i
- /Touch Events/i
specs:
- from: Touch Event、Fullscreen APIなどのサポートなど
to: Touch Events、Fullscreen APIなどのサポートなど
tags:
- noun
- JavaScript

View File

@ -0,0 +1,10 @@
id: 01BQ92YYSHHRNMZPY2VG4991B7
description: ''
expected: Travis CI
patterns:
- /TravisCI/i
specs:
- from: TravisCI is a service
to: Travis CI is a service
tags:
- noun

View File

@ -0,0 +1,9 @@
id: 01BQ92YYBJTDA6WF56ZE9PKP8F
description: 'Reference http://underscorejs.org/'
expected: Underscore.js
patterns:
- /underscore.js/i
specs: []
tags:
- noun
- JavaScript

View File

@ -0,0 +1,12 @@
id: 01BQ92YYBJP9EDR7KS993CMQAR
description: ''
expected: Virtual DOM
patterns:
- /VirtualDOM/i
specs:
- from: VirtualDOM is virtual dom object
to: Virtual DOM is virtual dom object
tags:
- noun
- opinion
- JavaScript

View File

@ -0,0 +1,11 @@
id: 01BQ92YZ6QCTPXGPWWJ5NWT6NC
description: ''
expected: Virtual Machine
patterns:
- Virtual machine
specs:
- from: MSEdgeが使えるWindows 10のVirtual machine(VM)が公開された
to: MSEdgeが使えるWindows 10のVirtual Machine(VM)が公開された
tags:
- noun
- opinion

View File

@ -0,0 +1,15 @@
id: 01BQ92YZ6QD58PVYY3FE7QD2S5
description: 'Reference http://www.seleniumhq.org/projects/webdriver/'
expected: WebDriver
patterns:
- /WebDriver/i
- /Web Driver/i
specs:
- from: Web Driver is designed in a simpler and more concise programming interface
to : WebDriver is designed in a simpler and more concise programming interface
- from: webdriver is designed in a simpler and more concise programming interface
to : WebDriver is designed in a simpler and more concise programming interface
- from: WebdriverIO is OK.
to : WebdriverIO is OK.
tags:
- noun

View File

@ -0,0 +1,20 @@
id: 01BW0P1BD0VKQQMZ4E947WVMJ1
description: >-
See
https://developer.mozilla.org/en-US/Add-ons/WebExtensions/What_are_WebExtensions
expected: WebExtension$1
patterns:
- /Web Extension(s)?/
specs:
- from: Web Extension
to: WebExtension
- from: Extensions for Firefox are built using WebExtensions APIs
to: Extensions for Firefox are built using WebExtensions APIs
- from: >-
WebExtension APIs are designed to be compatible with Chrome and Opera
extensions
to: >-
WebExtension APIs are designed to be compatible with Chrome and Opera
extensions
tags:
- noun

View File

@ -0,0 +1,13 @@
id: 01BQ92YYBH4NNWB305Y1TD7B6N
description: 'Reference https://www.w3.org/TR/webaudio/'
expected: Web Audio API
patterns:
- /WebAudio API/i
- /Web AudioAPI/i
- /Web Audio API/i
specs:
- from: All scheduled times in the WebAudio API are relative to the value of currentTime.
to: All scheduled times in the Web Audio API are relative to the value of currentTime.
tags:
- noun
- JavaScript

View File

@ -0,0 +1,12 @@
id: 01BQ92YYBGNAKFHY1TFA9Z3KTC
description: 'Reference https://w3c.github.io/webcomponents/explainer/'
expected: Web Components
patterns:
- /WebComponents/i
- /web components/i
specs:
- from: WebComponentsについてのWeeklyメールマガジン
to: Web ComponentsについてのWeeklyメールマガジン
tags:
- noun
- JavaScript

View File

@ -0,0 +1,12 @@
id: 01BQ92YZ6R35HCYAZGN18RB35E
description: 'Reference https://www.microsoft.com/windows'
expected: Windows $1
patterns:
- /Windows (\d+)/i
specs:
- from: OK windows
to: OK windows
- from: windows 10
to: Windows 10
tags:
- noun

View File

@ -0,0 +1,10 @@
id: 01BQ92YXWTV260J4A7W8TSWEXH
description: ''
expected: Workaround
patterns:
- Workaound
specs:
- from: iOS7と8のquerySelectorバグの対処(Workaound)
to: iOS7と8のquerySelectorバグの対処(Workaround)
tags:
- typo

View File

@ -0,0 +1,13 @@
id: 01BQ92YYBJENZB6M480KCJ0J99
description: 'Reference http://jquery.com/'
expected: jQuery
patterns:
- /jquery(?!-)/i
specs:
- from: jquery
to: jQuery
- from: jquery-ui
to: jquery-ui
tags:
- noun
- JavaScript

View File

@ -0,0 +1,15 @@
id: 01BQ92YYBGWJZC59XKSNA53X2C
description: 'Reference https://www.w3.org/TR/webstorage/'
expected: localStorage
patterns:
- localstorage
- local storage
specs:
- from: localstorage is a parts of webstorage
to: localStorage is a parts of webstorage
- from: local storage is a parts of webstorage
to: localStorage is a parts of webstorage
tags:
- noun
- JavaScript

View File

@ -0,0 +1,8 @@
id: 01BQ92YXWVT5PGRGQCH1ZZ6S7V
description: ''
expected: operator
patterns:
- oeprator
specs: []
tags:
- typo

View File

@ -0,0 +1,8 @@
id: 01BQ92YXWVY5EFQNE4ZV8K0HS5
description: ''
expected: package.json
patterns:
- packge.json
specs: []
tags:
- typo

View File

@ -0,0 +1,14 @@
id: 01BQ92YYBGNT2ZA7SCBGZP4XW8
description: 'Reference https://www.w3.org/TR/webstorage/'
expected: sessionStorage
patterns:
- sessionstorage
- session storage
specs:
- from: sessionstorage is a parts of webstorage
to: sessionStorage is a parts of webstorage
- from: session storage is a parts of webstorage
to: sessionStorage is a parts of webstorage
tags:
- noun
- JavaScript

View File

@ -0,0 +1,10 @@
id: 01BQ92YXWVJ7HG4TDWA45RH297
description: ''
expected: webpack
patterns:
- /\bwebpac(?!k)\b/
specs:
- from: webpacのビルド速度改善についてのスライド
to: webpackのビルド速度改善についてのスライド
tags:
- typo

View File

@ -0,0 +1,9 @@
id: 01BQ92YWWJAWZHRYQWBQTC1B4A
description: ''
expected: あらかじめ
patterns:
- 予め
specs: []
tags:
- opinion
- 表記統一

View File

@ -0,0 +1,9 @@
id: 01BQ92YWWJH3XXNCQZAK2D85HF
description: 漢字で書かず、ひらがなで書くと読みやすくなります
expected: あらかじめ
patterns:
- 予め
specs: []
tags:
- opinion
- 表記統一

View File

@ -0,0 +1,9 @@
id: 01BQ92YWWG88YPF547XKRY55GD
description: 漢字で書かず、ひらがなで書くと読みやすくなります
expected: いう
patterns:
- 言う
specs: []
tags:
- opinion
- 表記統一

View File

@ -0,0 +1,9 @@
id: 01BQ92YWWFH022QKDDGHZ8SJ34
description: 漢字で書かず、ひらがなで書くと読みやすくなります
expected: いえ
patterns:
- 言え
specs: []
tags:
- opinion
- 表記統一

View File

@ -0,0 +1,9 @@
id: 01BQ92YWWK7H8FD3NS8HDFX3HA
description: ''
expected: いずれ
patterns:
- 何れ
specs: []
tags:
- opinion
- 表記統一

View File

@ -0,0 +1,9 @@
id: 01BQ92YWWK8TSEPWS0C95FEC71
description: ''
expected: いつ
patterns:
- 何時
specs: []
tags:
- opinion
- 表記統一

View File

@ -0,0 +1,9 @@
id: 01BQ92YWWJFBM3H20AG34FKMK8
description: 漢字で書かず、ひらがなで書くと読みやすくなります
expected: うまく
patterns:
- 巧く
specs: []
tags:
- opinion
- 表記統一

View File

@ -0,0 +1,9 @@
id: 01BQ92YWWKTERGYMW0ZSM4Q6T9
description: ''
expected: おもむろに
patterns:
- 徐に
specs: []
tags:
- opinion
- 表記統一

View File

@ -0,0 +1,9 @@
id: 01BQ92YWWKN8RQSJ5QS25W0VGE
description: ''
expected: およそ
patterns:
- 凡そ
specs: []
tags:
- opinion
- 表記統一

View File

@ -0,0 +1,9 @@
id: 01BQ92YWWSJWNGJ7XK6K9NGJ5X
description: ''
expected: および
patterns:
- 及び
specs: []
tags:
- opinion
- 表記統一

View File

@ -0,0 +1,9 @@
id: 01BQ92YWWJZ5GNB58T87P7C518
description: ひらがなで書かず、漢字で書くと読みやすくなります
expected: お勧め
patterns:
- おすすめ
specs: []
tags:
- opinion
- 表記統一

View File

@ -0,0 +1,9 @@
id: 01BQ92YWWKRG3DGNQNE47W4PA2
description: ''
expected: かえって
patterns:
- 却って
specs: []
tags:
- opinion
- 表記統一

View File

@ -0,0 +1,13 @@
id: 01BQ92YWWJ1XF356X492WM4GB3
description: 漢字で書かず、ひらがなで書くと読みやすくなります
expected: かかわらず
patterns:
- /関わ?らず/
specs:
- from: 関わらず
to: かかわらず
- from: 関らず
to: かかわらず
tags:
- opinion
- 表記統一

View File

@ -0,0 +1,9 @@
id: 01BQ92YWWK8PVJQWH8TFEDPBPP
description: ''
expected: かつ
patterns:
- 且つ
specs: []
tags:
- opinion
- 表記統一

View File

@ -0,0 +1,9 @@
id: 01BQ92YWWKFGQT7012C26Z9PDK
description: ''
expected: かもしれない
patterns:
- かも知れない
specs: []
tags:
- opinion
- 表記統一

View File

@ -0,0 +1,11 @@
id: 01BQ92YWWSC0HW6ZNWEPP1JD7D
description: ''
expected: が及ぶ
patterns:
- がおよぶ
specs:
- from: (例)影響がおよぶ。
to: (例)影響が及ぶ。
tags:
- opinion
- 表記統一

View File

@ -0,0 +1,11 @@
id: 01BQ92YWWV3Q8NHMZVPNRJZVT5
description: ''
expected: が欲しい
patterns:
- がほしい
specs:
- from: この本がほしい
to: この本が欲しい
tags:
- opinion
- 表記統一

View File

@ -0,0 +1,9 @@
id: 01BQ92YWWH4S4MHJBC8MH9QWCH
description: 漢字で書かず、ひらがなで書くと読みやすくなります
expected: きれい
patterns:
- 綺麗
specs: []
tags:
- opinion
- 表記統一

View File

@ -0,0 +1,11 @@
id: 01BQ92YWWKKKX6HX0AKMPGKFG2
description: ''
expected: ください
patterns:
- 下さい
specs:
- from: 提出して下さい。
to: 提出してください。
tags:
- opinion
- 表記統一

View File

@ -0,0 +1,19 @@
id: 01BQ92YWWJVHKXNF08X9P8YP6R
description: 漢字で書かず、ひらがなで書くと読みやすくなります
expected: $1こと
patterns:
- /([ぁ-んァ-ヶ])事(?!情|件|前|後|例|実|体|態|項|者)/
specs:
- from: やましい事があるのでは?
to: やましいことがあるのでは?
- from: やましい事があるのでは?
to: やましいことがあるのでは?
- from: ある事
to: あること
- from: 記事
to: 記事
- from: 事件
to: 事件
tags:
- opinion
- 表記統一

View File

@ -0,0 +1,9 @@
id: 01BQ92YWWK97DCJ3QSQWNP2W6T
description: ''
expected: これほど
patterns:
- これ程
specs: []
tags:
- opinion
- 表記統一

View File

@ -0,0 +1,9 @@
id: 01BQ92YWWN8KK846ZN3H07QQJ8
description: ''
expected: これほど
patterns:
- これ程
specs: []
tags:
- opinion
- 表記統一

View File

@ -0,0 +1,13 @@
id: 01BQ92YWWK0KK7V3EYSGTB16GV
description: ''
expected: ご$1
patterns:
- /御(覧|意見)/
specs:
- from: 御覧ください
to: ご覧ください
- from: 御意見
to: ご意見
tags:
- opinion
- 表記統一

View File

@ -0,0 +1,9 @@
id: 01BQ92YWWGD1C0PM7JYEKSTADT
description: 漢字で書かず、ひらがなで書くと読みやすくなります
expected: さまざま
patterns:
- 様々
specs: []
tags:
- opinion
- 表記統一

View File

@ -0,0 +1,9 @@
id: 01BQ92YWWMAD0X0M113VPHHB7P
description: ''
expected: しかし
patterns:
- 然し
specs: []
tags:
- opinion
- 表記統一

View File

@ -0,0 +1,9 @@
id: 01BQ92YWWJ738MH1C1JPCAQQGE
description: 漢字で書かず、ひらがなで書くと読みやすくなります
expected: したがって
patterns:
- 従って
specs: []
tags:
- opinion
- 表記統一

View File

@ -0,0 +1,9 @@
id: 01BQ92YWWTJSNNFTNCSXX0HP2V
description: (接続詞の場合)ひらがなを使う
expected: したがって
patterns:
- 従って
specs: []
tags:
- opinion
- 表記統一

View File

@ -0,0 +1,9 @@
id: 01BQ92YWWM4WW95ZZWJTMGYPZJ
description: ''
expected: しばらく
patterns:
- 暫く
specs: []
tags:
- opinion
- 表記統一

View File

@ -0,0 +1,9 @@
id: 01BQ92YWWHVQYQ197GCNP3GPMV
description: 漢字で書かず、ひらがなで書くと読みやすくなります
expected: すでに
patterns:
- 既に
specs: []
tags:
- opinion
- 表記統一

View File

@ -0,0 +1,9 @@
id: 01BQ92YWWMWSKYQZ8RZRDH8DNP
description: ''
expected: すなわち
patterns:
- 即ち
specs: []
tags:
- opinion
- 表記統一

View File

@ -0,0 +1,9 @@
id: 01BQ92YWWM8B4NYKG1AV9NXFVQ
description: ''
expected: すべき
patterns:
- 可き
specs: []
tags:
- opinion
- 表記統一

View File

@ -0,0 +1,9 @@
id: 01BQ92YWWHG43XSW5K6T896MX0
description: 漢字で書かず、ひらがなで書くと読みやすくなります
expected: すべて
patterns:
- 全て
specs: []
tags:
- opinion
- 表記統一

View File

@ -0,0 +1,9 @@
id: 01BQ92YWWM9JD0KMV2EF7DJNPB
description: ''
expected: せっかく
patterns:
- 折角
specs: []
tags:
- opinion
- 表記統一

Some files were not shown because too many files have changed in this diff Show More