Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/katsew/my_coding_regulation
https://github.com/katsew/my_coding_regulation
Last synced: 14 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/katsew/my_coding_regulation
- Owner: katsew
- Created: 2014-05-15T17:07:52.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2014-05-27T06:10:03.000Z (over 10 years ago)
- Last Synced: 2024-04-15T00:45:08.084Z (10 months ago)
- Homepage:
- Size: 191 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# コーディング規約
## HTML
・charsetはutf-8にすること
```
```
・doctypeはhtml5で宣言すること
```
```
・img要素はalt属性を省略しない。省略可能な場合はalt=""とする
```
![]()
```
```
省略可能な場合
![]()
```・h1要素は1ページに複数配置しないこと
・インデントはスペース2つですること
・インラインにJavaScript, CSSを展開しないこと
```
NG: ,
```・属性指定はダブルクオーテーション("")をつかうこと
```
OK:
NG:
```・JavaScriptをonclickなどで呼び出さないこと
```
NG:
```・a要素でhref属性を省略しないこと。JavaScriptで処理をする場合は "#" を入れておくこと
```
OK: hoge
NG: hoge
```・自作した.jsファイルはbody要素を閉じる直前に配置すること
```
(...