これは超訳です。
CSSLintは「なんでこんなルールなんだ…」とイラっとすることが多いですけど、それぞれにそれなりに理由があります。まぁ勿論無視するべきなルールとかもあります。例えば見出し要素の再定義禁止とかはHTML5に対するCSSなら無理な話です。そんなわけでどんな理由なのかを簡単に訳しました。無視するかどうかは自分で決めましょう!
この訳はCSSLintと同じライセンスで提供されます。
# spec_helper.rb | |
RSpec.configure do |config| | |
... | |
# テスト完了後一度だけ実行される | |
config.after(:suite) do | |
DatabaseCleaner.clean_with(:truncation) | |
end | |
# 各テスト実行前に実行される | |
config.before(:each) do |spec| |
// Vue.js like reactive object pattern | |
// show detail https://github.com/vuejs/vue/blob/master/src/core/observer/index.js | |
const Watcher = function() {} | |
Watcher.prototype.update = function () { | |
console.log('Watcher update') | |
} | |
const Dep = function(watcher) { | |
this.id = this.id ? this.id ++ : 0 | |
this.subs = [] |
# stop all container | |
# -a=false: Show all containers. Only running containers are shown by default. | |
# -q=false: Only display numeric IDs | |
sudo docker stop $(docker ps -a -q) | |
# remove all container | |
sudo docker rm $(docker ps -a -q) | |
# remove all images | |
# -a=false: show all images |
class Country | |
def home | |
'Japan' | |
end | |
end | |
# ----- | |
module ExtendContry | |
def new_home |
<?php | |
// WordPressの読み込みが完了し、ヘッダーが送信される前に実行する。 | |
add_action( 'init', 'init' ); | |
function init() { | |
// 言語設定が日本語でなく、パラメーター付与されていないとき針ダイレクト | |
if(!is_Ja() && $_GET["lang"] != "en"): | |
$url = "http://" . $_SERVER['HTTP_HOST'] . $_SERVER['SCRIPT_NAME'] . "?lang=en"; | |
header("Location: $url"); | |
exit; |
for i in `gem list --no-versions`; do gem uninstall -aIx $i; done |
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="UTF-8"> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
<meta http-equiv="X-UA-Compatible" content="ie=edge"> | |
<title>Document</title> | |
<style> | |
custom-checkbox { |
# -*- mode: ruby -*- | |
# vi: set ft=ruby : | |
# Vagrantfile API/syntax version. Don't touch unless you know what you're doing! | |
VAGRANTFILE_API_VERSION = "2" | |
Vagrant.configure(VAGRANTFILE_API_VERSION) do |config| | |
config.vm.provider :virtualbox do |vb| | |
vb.gui = true |