- Close Editor Tabs Left Right
- Live Edit
- Prettier
- Rainbow
- Statistic
- String Manipulation
- Key Promoter X
- IDE Features Trainer
- コミットするときにコミット対象外のファイルをコミット画面で表示しない
- タブが増えても、タブを隠さずに複数行で表示する
- [Trigger the watcher on external changes]を ON にしているとGitでRevertしたときにPrettierが動作し、
永遠にRevert出来ないため OFF にする。
- commit時に「unversioned files」を表示させない
printenv PATH
- コマンド 「gridsome」 がある
- https://github.com/nodejs/node/blob/321e296371383fd63131d21c1121e22163ddeb86/lib/internal/modules/cjs/loader.js#L569
- 上記のファイルをindexで検索するとヒットするだろうから、多分そこらで処理してる
- falseにしないと大文字・小文字を判別してくれない。
- その為、ローカルでcomponent.vue を Component.vue に変更して、pushしても、リモート側は変更を検知せず、変更されない
- そうなると、ファイル側ではComponent.vueでimportしてるのにComponent.vueなんて無いぞと怒られる。
- https://git-scm.com/docs/gitignore
- $HOME/.config/git/ignore に書く
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
module.exports = { | |
arrowParens: 'avoid', // 関数の引数が単一の場合に丸括弧をつけるか | |
bracketSpacing: true, // 波括弧で囲まれている中身と括弧の間に空白スペースを入れるか | |
endOfLine: 'lf', // 改行コードを指定する | |
htmlWhitespaceSensitivity: 'strict', // HTMLに対して改行の方針を決める | |
printWidth: 80, // 行の長さを指定する | |
semi: true, // 文末にセミコロンを付けるか | |
singleQuote: true, // 文字列をシングルクウォートで括るか | |
tabWidth: 2, // インデントの半角スペースの数を指定する | |
trailingComma: 'none' // オブジェクトのプロパティや関数の引数の最後にコンマを付けるか |