一份彙整了在 JavasScript 中被普遍使用的風格指南。
其他風格指南
翻譯自 Airbnb JavaScript Style Guide 。
- 資料型態
- 參考
- 物件
- 陣列
- 解構子
- 字串
- 函式
- 箭頭函式
- 建構子
- 模組
- 迭代器及產生器
- 屬性
- 變數
- 提升
- 條件式與等號
- 區塊
- 控制陳述式
- 註解
- 空格
- 逗號
- 分號
- 型別轉換
- 命名規則
- 存取器
- 事件
- jQuery
- ECMAScript 5 相容性
- ECMAScript 6 風格
- 標準程式庫
- 測試
- 效能
- 資源
- 誰在使用
- 翻譯
- JavaScript 風格指南
- 和我們討論 Javascript
- 貢獻者
- 授權許可
- Amendments
-
1.1 基本:你可以直接存取基本資料型態。
字串
數字
布林
null
undefined
const foo = 1; let bar = foo; bar = 9; console.log(foo, bar); // => 1, 9
-
1.2 複合:你需要透過引用的方式存取複合資料型態。
物件
陣列
函式
const foo = [1, 2]; const bar = foo; bar[0] = 9; console.log(foo[0], bar[0]); // => 9, 9
-
2.1 對於所有的參考使用
const
;避免使用var
。eslint:prefer-const
,no-const-assign
為什麼?因為這能確保你無法對參考重新賦值,也不會讓你的程式碼有錯誤或難以理解。
// bad var a = 1; var b = 2; // good const a = 1; const b = 2;
-
2.2 如果你需要可變動的參考,使用
let
代替var
。eslint:no-var
jscs:disallowVar
為什麼?因為
let
的作用域是在區塊內,而不像var
是在函式內。// bad var count = 1; if (true) { count += 1; } // good, use the let. let count = 1; if (true) { count += 1; }
-
2.3 請注意,
let
與const
的作用域都只在區塊內。// const 及 let 只存在於他們被定義的區塊內。 { let a = 1; const b = 1; } console.log(a); // ReferenceError console.log(b); // ReferenceError
-
3.1 使用簡潔的語法建立物件。eslint rules:
no-new-object
.// bad const item = new Object(); // good const item = {};
-
3.2 別使用保留字當作鍵值,他在 IE8 上不會被執行。了解更多。不過在 ES6 模組及伺服器端程式碼中使用是可行的。jscs:
disallowIdentifierNames
// bad const superman = { default: { clark: 'kent' }, private: true, }; // good const superman = { defaults: { clark: 'kent' }, hidden: true, };
-
3.3 使用同義詞取代保留字。jscs:
disallowIdentifierNames
// bad const superman = { class: 'alien', }; // bad const superman = { klass: 'alien', }; // good const superman = { type: 'alien', };
-
3.4 建立具有動態屬性名稱的物件時請使用可被計算的屬性名稱。
為什麼?因為這樣能夠讓你在同一個地方定義所有的物件屬性。
function getKey(k) { return `a key named ${k}`; } // bad const obj = { id: 5, name: 'San Francisco', }; obj[getKey('enabled')] = true; // good const obj = { id: 5, name: 'San Francisco', [getKey('enabled')]: true, };
-
3.5 使用物件方法的簡寫。eslint:
object-shorthand
jscs:requireEnhancedObjectLiterals
// bad const atom = { value: 1, addValue: function (value) { return atom.value + value; }, }; // good const atom = { value: 1, addValue(value) { return atom.value + value; }, };
-
3.6 使用屬性值的簡寫。eslint:
object-shorthand
jscs:requireEnhancedObjectLiterals
為什麼?因為寫起來更短且更有描述性。
const lukeSkywalker = 'Luke Skywalker'; // bad const obj = { lukeSkywalker: lukeSkywalker, }; // good const obj = { lukeSkywalker, };
-
3.7 請在物件宣告的開頭將簡寫的屬性分組。
為什麼?因為這樣能夠很簡單的看出哪些屬性是使用簡寫。
const anakinSkywalker = 'Anakin Skywalker'; const lukeSkywalker = 'Luke Skywalker'; // bad const obj = { episodeOne: 1, twoJediWalkIntoACantina: 2, lukeSkywalker, episodeThree: 3, mayTheFourth: 4, anakinSkywalker, }; // good const obj = { lukeSkywalker, anakinSkywalker, episodeOne: 1, twoJediWalkIntoACantina: 2, episodeThree: 3, mayTheFourth: 4, };
-
3.8 只在無效的鍵加上引號。eslint:
quote-props
jscs:disallowQuotedKeysInObjects
為什麼?整體來說,我們認為這在主觀上更容易閱讀。它會改善語法高亮,也能讓多數的 JS 引擎更容易最佳化。
// bad const bad = { 'foo': 3, 'bar': 4, 'data-blah': 5, }; // good const good = { foo: 3, bar: 4, 'data-blah': 5, };
-
4.1 使用簡潔的語法建立陣列。eslint:
no-array-constructor
// bad const items = new Array(); // good const items = [];
-
4.2 如果你不知道陣列的長度請使用 Array#push。
const someStack = []; // bad someStack[someStack.length] = 'abracadabra'; // good someStack.push('abracadabra');
-
4.3 使用陣列的擴展運算子
...
來複製陣列。// bad const len = items.length; const itemsCopy = []; let i; for (i = 0; i < len; i++) { itemsCopy[i] = items[i]; } // good const itemsCopy = [...items];
-
4.4 如果要轉換一個像陣列的物件至陣列,可以使用 Array#from。
const foo = document.querySelectorAll('.foo'); const nodes = Array.from(foo);
-
4.5 在陣列方法的回呼使用 return 宣告。若函式本體是如 8.2 的單一語法,那麼省略 return 是可以的。eslint:
array-callback-return
// good [1, 2, 3].map((x) => { const y = x + 1; return x * y; }); // good [1, 2, 3].map(x => x + 1); // bad const flat = {}; [[0, 1], [2, 3], [4, 5]].reduce((memo, item, index) => { const flatten = memo.concat(item); flat[index] = memo.concat(item); }); // good const flat = {}; [[0, 1], [2, 3], [4, 5]].reduce((memo, item, index) => { const flatten = memo.concat(item); flat[index] = flatten; return flatten; }); // bad inbox.filter((msg) => { const { subject, author } = msg; if (subject === 'Mockingbird') { return author === 'Harper Lee'; } else { return false; } }); // good inbox.filter((msg) => { const { subject, author } = msg; if (subject === 'Mockingbird') { return author === 'Harper Lee'; } return false; });
-
5.1 存取或使用多屬性的物件時,請使用物件解構子。jscs:
requireObjectDestructuring
為什麼?因為解構子能夠節省你對這些屬性建立暫時的參考。
// bad function getFullName(user) { const firstName = user.firstName; const lastName = user.lastName; return `${firstName} ${lastName}`; } // good function getFullName(user) { const { firstName, lastName } = user; return `${firstName} ${lastName}`; } // best function getFullName({ firstName, lastName }) { return `${firstName} ${lastName}`; }
-
5.2 使用陣列解構子。jscs:
requireArrayDestructuring
const arr = [1, 2, 3, 4]; // bad const first = arr[0]; const second = arr[1]; // good const [first, second] = arr;
-
5.3 需要回傳多個值時請使用物件解構子,而不是陣列解構子。
為什麼?因為你可以增加新的屬性或改變排序且不須更動呼叫的位置。
// bad function processInput(input) { // 這時神奇的事情出現了 return [left, right, top, bottom]; } // 呼叫時必須考慮回傳資料的順序。 const [left, __, top] = processInput(input); // good function processInput(input) { // 這時神奇的事情出現了 return { left, right, top, bottom }; } // 呼叫時只需選擇需要的資料 const { left, right } = processInput(input);
-
6.1 字串請使用單引號
''
。eslint:quotes
jscs:validateQuoteMarks
// bad const name = "Capt. Janeway"; // good const name = 'Capt. Janeway';
-
6.2 如果字串超過 100 個字元,請使用字串連接符號換行。
-
6.3 注意:過度的長字串連接可能會影響效能。jsPerf 及討論串。
// bad const errorMessage = 'This is a super long error that was thrown because of Batman. When you stop to think about how Batman had anything to do with this, you would get nowhere fast.'; // bad const errorMessage = 'This is a super long error that was thrown because \ of Batman. When you stop to think about how Batman had anything to do \ with this, you would get nowhere \ fast.'; // good const errorMessage = 'This is a super long error that was thrown because ' + 'of Batman. When you stop to think about how Batman had anything to do ' + 'with this, you would get nowhere fast.';
-
6.4 當以程式方式建構字串時,請使用模板字串而不是字串連接。eslint:
prefer-template
template-curly-spacing
jscs:requireTemplateStrings
為什麼?因為模板字串更有可讀性,正確的換行符號及字串插值功能讓語法更簡潔。
// bad function sayHi(name) { return 'How are you, ' + name + '?'; } // bad function sayHi(name) { return ['How are you, ', name, '?'].join(); } // bad function sayHi(name) { return `How are you, ${ name }?`; } // good function sayHi(name) { return `How are you, ${name}?`; }
-
6.5 千萬不要在字串中使用
eval()
,會造成許多的漏洞。
-
7.1 使用函式宣告而不是函式表達式。jscs:
requireFunctionDeclarations
為什麼?因為函式宣告是可命名的,所以他們在呼叫堆疊中更容易被識別。此外,函式宣告自身都會被提升,而函式表達式則只有參考會被提升。這個規則使得箭頭函式可以完全取代函式表達式。
// bad const foo = function () { }; // good function foo() { }
-
7.2 立即函式:eslint:
wrap-iife
jscs:requireParenthesesAroundIIFE
為什麼?一個立即函式是個獨立的單元-將函式及呼叫函式的括號包起來明確表示這一點。注意在模組世界的任何地方,你都不需要使用立即函式。
// 立即函式(IIFE) (function () { console.log('Welcome to the Internet. Please follow me.'); }());
-
7.3 絕對不要在非函式的區塊(if、while 等等)宣告函式。你可以將函式賦予至變數解決這個問題。瀏覽器會允許你這麼做,但不同瀏覽器產生的結果可能會不同。eslint:
no-loop-func
-
7.4 **注意:**ECMA-262 將
區塊
定義為陳述式。函式宣告則不是陳述式。閱讀 ECMA-262 關於這個問題的說明。// bad if (currentUser) { function test() { console.log('Nope.'); } } // good let test; if (currentUser) { test = () => { console.log('Yup.'); }; }
-
7.5 請勿將參數命名為
arguments
,這樣會將覆蓋掉函式作用域傳來的arguments
。// bad function nope(name, options, arguments) { // ...stuff... } // good function yup(name, options, args) { // ...stuff... }
-
7.6 絕對不要使用
arguments
,可以選擇使用 rest 語法...
替代。prefer-rest-params
為什麼?使用
...
能夠明確指出你要將參數傳入哪個變數。再加上 rest 參數是一個真正的陣列,而不像arguments
似陣列而非陣列。// bad function concatenateAll() { const args = Array.prototype.slice.call(arguments); return args.join(''); } // good function concatenateAll(...args) { return args.join(''); }
-
7.7 使用預設參數的語法,而不是變動函式的參數。
// really bad function handleThings(opts) { // 不!我們不該變動函式的參數。 // Double bad: 如果 opt 是 false ,那們它就會被設定為一個物件, // 或許你想要這麼做,但是這樣可能會造成一些 Bug。 opts = opts || {}; // ... } // still bad function handleThings(opts) { if (opts === void 0) { opts = {}; } // ... } // good function handleThings(opts = {}) { // ... }
-
7.8 使用預設參數時請避免副作用。
為什麼?因為這樣會讓思緒混淆。
var b = 1; // bad function count(a = b++) { console.log(a); } count(); // 1 count(); // 2 count(3); // 3 count(); // 3
-
7.9 永遠將預設參數放置於最後。
// bad function handleThings(opts = {}, name) { // ... } // good function handleThings(name, opts = {}) { // ... }
-
7.10 千萬別使用建構函式去建立一個新的函式。
為什麼?透過這種方式建立一個函數來計算字串類似於 eval(),會造成許多的漏洞。
// bad var add = new Function('a', 'b', 'return a + b'); // still bad var subtract = Function('a', 'b', 'return a - b');
-
7.11 在函式的標示後放置空格。
為什麼?一致性較好,而且你不應該在新增或刪除名稱時增加或減少空格。
// bad const f = function(){}; const g = function (){}; const h = function() {}; // good const x = function () {}; const y = function a() {};
-
7.12 切勿變更參數。eslint:
no-param-reassign
為什麼?操作作為參數傳入的物件可能導致變數產生原呼叫者不期望的副作用。
// bad function f1(obj) { obj.key = 1; }; // good function f2(obj) { const key = Object.prototype.hasOwnProperty.call(obj, 'key') ? obj.key : 1; };
-
7.13 切勿重新賦值給參數。eslint:
no-param-reassign
為什麼?將參數重新賦值可能導致意外的行為,尤其在存取
arguments
物件時。它可能會引起最佳化的問題,尤其在 V8。// bad function f1(a) { a = 1; } function f2(a) { if (!a) { a = 1; } } // good function f3(a) { const b = a || 1; } function f4(a = 1) { }
-
8.1 當你必須使用函式表達式(或傳遞一個匿名函式)時,請使用箭頭函式的符號。eslint:
prefer-arrow-callback
,arrow-spacing
jscs:requireArrowFunctions
為什麼?它會在有
this
的內部建立了一個新版本的函式,通常功能都是你所想像的,而且語法更為簡潔。為什麼不?如果你已經有一個相當複雜的函式時,或許你該將邏輯都移到一個函式宣告上。
// bad [1, 2, 3].map(function (x) { const y = x + 1; return x * y; }); // good [1, 2, 3].map((x) => { const y = x + 1; return x * y; });
-
8.2 如果函式適合只使用一行,你可以很隨性的省略大括號及使用隱藏的回傳。否則請使用
return
語法。eslint:arrow-parens
,arrow-body-style
jscs:disallowParenthesesAroundArrowParam
,requireShorthandArrowFunctions
為什麼?因為語法修飾。這樣能夠在多個函式鏈結在一起的時候更易讀。
為什麼不?如果你打算回傳一個物件。
// bad [1, 2, 3].map(number => { const nextNumber = number + 1; `A string containing the ${nextNumber}.`; }); // good [1, 2, 3].map(number => `A string containing the ${number}.`); // good [1, 2, 3].map((number) => { const nextNumber = number + 1; return `A string containing the ${nextNumber}.`; });
-
8.3 如果表達式跨了多行,請將它們包在括號中增加可讀性。
為什麼?這麼做更清楚的表達函式的開始與結束的位置。
// bad [1, 2, 3].map(number => 'As time went by, the string containing the ' + `${number} became much longer. So we needed to break it over multiple ` + 'lines.' ); // good [1, 2, 3].map(number => ( `As time went by, the string containing the ${number} became much ` + 'longer. So we needed to break it over multiple lines.' ));
-
8.4 如果你的函式只使用一個參數,那麼可以很隨意的省略括號。否則請在參數兩側加上括號。eslint:
arrow-parens
jscs:disallowParenthesesAroundArrowParam
為什麼?減少視覺上的混亂。
// bad [1, 2, 3].map((x) => x * x); // good [1, 2, 3].map(x => x * x); // good [1, 2, 3].map(number => ( `A long string with the ${number}. It’s so long that we’ve broken it ` + 'over multiple lines!' )); // bad [1, 2, 3].map(x => { const y = x + 1; return x * y; }); // good [1, 2, 3].map((x) => { const y = x + 1; return x * y; });
-
8.5 避免混淆箭頭函式語法(
=>
)及比較運算子(<=
、>=
)。eslint:no-confusing-arrow
// bad const itemHeight = item => item.height > 256 ? item.largeSize : item.smallSize; // bad const itemHeight = (item) => item.height > 256 ? item.largeSize : item.smallSize; // good const itemHeight = item => { return item.height > 256 ? item.largeSize : item.smallSize; }
-
9.1 總是使用
class
。避免直接操作prototype
。為什麼?因為
class
語法更簡潔且更易讀。// bad function Queue(contents = []) { this._queue = [...contents]; } Queue.prototype.pop = function () { const value = this._queue[0]; this._queue.splice(0, 1); return value; } // good class Queue { constructor(contents = []) { this._queue = [...contents]; } pop() { const value = this._queue[0]; this._queue.splice(0, 1); return value; } }
-
9.2 使用
extends
繼承。為什麼?因為他是一個內建繼承原型方法的方式,且不會破壞
instanceof
。// bad const inherits = require('inherits'); function PeekableQueue(contents) { Queue.apply(this, contents); } inherits(PeekableQueue, Queue); PeekableQueue.prototype.peek = function () { return this._queue[0]; } // good class PeekableQueue extends Queue { peek() { return this._queue[0]; } }
-
9.3 方法可以回傳
this
幫助方法鏈結。// bad Jedi.prototype.jump = function () { this.jumping = true; return true; }; Jedi.prototype.setHeight = function (height) { this.height = height; }; const luke = new Jedi(); luke.jump(); // => true luke.setHeight(20); // => undefined // good class Jedi { jump() { this.jumping = true; return this; } setHeight(height) { this.height = height; return this; } } const luke = new Jedi(); luke.jump() .setHeight(20);
-
9.4 可以寫一個 toString() 的方法,但是請確保它可以正常執行且沒有函式副作用。
class Jedi { constructor(options = {}) { this.name = options.name || 'no name'; } getName() { return this.name; } toString() { return `Jedi - ${this.getName()}`; } }
-
9.5 若類別沒有指定建構子,那它會擁有預設的建構子。一個空的建構子函式或只委派給父類別是不必要的。
no-useless-constructor
// bad class Jedi { constructor() {} getName() { return this.name; } } // bad class Rey extends Jedi { constructor(...args) { super(...args); } } // good class Rey extends Jedi { constructor(...args) { super(...args); this.name = 'Rey'; } }
-
10.1 總是使用模組(
import
/export
)勝過一個非標準模組的系統。你可以編譯為喜歡的模組系統。為什麼?模組就是未來的趨勢,讓我們現在就開始前往未來吧。
// bad const AirbnbStyleGuide = require('./AirbnbStyleGuide'); module.exports = AirbnbStyleGuide.es6; // ok import AirbnbStyleGuide from './AirbnbStyleGuide'; export default AirbnbStyleGuide.es6; // best import { es6 } from './AirbnbStyleGuide'; export default es6;
-
10.2 請別使用萬用字元引入。
為什麼?這樣能夠確保你只有一個預設導出。
// bad import * as AirbnbStyleGuide from './AirbnbStyleGuide'; // good import AirbnbStyleGuide from './AirbnbStyleGuide';
-
10.3 然後也不要在引入的地方導出。
為什麼?雖然一行程式相當的簡明,但是讓引入及導出各自有明確的方式能夠讓事情保持一致。
// bad // filename es6.js export { es6 as default } from './airbnbStyleGuide'; // good // filename es6.js import { es6 } from './AirbnbStyleGuide'; export default es6;
-
11.1 不要使用迭代器。更好的做法是使用 JavaScript 的高階函式,像是
map()
及reduce()
,替代如for-of
的迴圈語法。eslint:no-iterator
為什麼?這加強了我們不變的規則。處理純函式的回傳值讓程式碼更易讀,勝過它所造成的函式副作用。
eslint rules:
no-iterator
.const numbers = [1, 2, 3, 4, 5]; // bad let sum = 0; for (let num of numbers) { sum += num; } sum === 15; // good let sum = 0; numbers.forEach(num => sum += num); sum === 15; // best (使用 javascript 的高階函式) const sum = numbers.reduce((total, num) => total + num, 0); sum === 15;
-
11.2 現在還不要使用產生器。
為什麼?因為它現在編譯至 ES5 還沒有編譯得非常好。
-
12.1 使用點
.
來存取屬性。eslint:dot-notation
jscs:requireDotNotation
const luke = { jedi: true, age: 28, }; // bad const isJedi = luke['jedi']; // good const isJedi = luke.jedi;
-
12.2 需要帶參數存取屬性時請使用中括號
[]
。const luke = { jedi: true, age: 28, }; function getProp(prop) { return luke[prop]; } const isJedi = getProp('jedi');
-
13.1 為了避免污染全域的命名空間,請使用
const
來宣告變數,如果不這麼做將會產生全域變數。Captain Planet warned us of that.// bad superPower = new SuperPower(); // good const superPower = new SuperPower();
-
13.2 每個變數只使用一個
const
來宣告。eslint:one-var
jscs:disallowMultipleVarDecl
為什麼?因為這樣更容易增加新的變數宣告,而且你也不用擔心替換
;
為,
及加入的標點符號不同的問題。// bad const items = getItems(), goSportsTeam = true, dragonball = 'z'; // bad // (比較上述例子找出錯誤) const items = getItems(), goSportsTeam = true; dragonball = 'z'; // good const items = getItems(); const goSportsTeam = true; const dragonball = 'z';
-
13.3 將所有的
const
及let
分組。為什麼?當你需要根據之前已賦值的變數來賦值給未賦值變數時相當有幫助。
// bad let i, len, dragonball, items = getItems(), goSportsTeam = true; // bad let i; const items = getItems(); let dragonball; const goSportsTeam = true; let len; // good const goSportsTeam = true; const items = getItems(); let dragonball; let i; let length;
-
13.4 在你需要的地方賦值給變數,但是請把它們放在合理的位置。
為什麼?因為
let
及const
是在區塊作用域內,而不是函式作用域。// bad - unnecessary function call function checkName(hasName) { const name = getName(); if (hasName === 'test') { return false; } if (name === 'test') { this.setName(''); return false; } return name; } // good function checkName(hasName) { if (hasName === 'test') { return false; } const name = getName(); if (name === 'test') { this.setName(''); return false; } return name; }
-
14.1
var
宣告可以被提升至該作用域的最頂層,但賦予的值並不會。const
及let
的宣告被賦予了新的概念,稱為暫時性死區(Temporal Dead Zones, TDZ)。這對於瞭解為什麼 typeof 不再那麼安全是相當重要的。// 我們知道這樣是行不通的 // (假設沒有名為 notDefined 的全域變數) function example() { console.log(notDefined); // => throws a ReferenceError } // 由於變數提升的關係, // 你在引用變數後再宣告變數是行得通的。 // 注:賦予給變數的 `true` 並不會被提升。 function example() { console.log(declaredButNotAssigned); // => undefined var declaredButNotAssigned = true; } // 直譯器會將宣告的變數提升至作用域的最頂層, // 表示我們可以將這個例子改寫成以下: function example() { let declaredButNotAssigned; console.log(declaredButNotAssigned); // => undefined declaredButNotAssigned = true; } // 使用 const 及 let function example() { console.log(declaredButNotAssigned); // => throws a ReferenceError console.log(typeof declaredButNotAssigned); // => throws a ReferenceError const declaredButNotAssigned = true; }
-
14.2 賦予匿名函式的變數會被提升,但函式內容並不會。
function example() { console.log(anonymous); // => undefined anonymous(); // => TypeError anonymous is not a function var anonymous = function () { console.log('anonymous function expression'); }; }
-
14.3 賦予命名函式的變數會被提升,但函式內容及函式名稱並不會。
function example() { console.log(named); // => undefined named(); // => TypeError named is not a function superPower(); // => ReferenceError superPower is not defined var named = function superPower() { console.log('Flying'); }; } // 當函式名稱和變數名稱相同時也是如此。 function example() { console.log(named); // => undefined named(); // => TypeError named is not a function var named = function named() { console.log('named'); } }
-
14.4 宣告函式的名稱及函式內容都會被提升。
function example() { superPower(); // => Flying function superPower() { console.log('Flying'); } }
-
想瞭解更多訊息,請參考 Ben Cherry 的 JavaScript Scoping & Hoisting。
-
15.2 像是
if
的條件語法內會使用ToBoolean
的抽象方法強轉類型,並遵循以下規範:- 物件 轉換為 true
- Undefined 轉換為 false
- Null 轉換為 false
- 布林 轉換為 該布林值
- 數字 如果是 +0, -0, 或 NaN 則轉換為 false,其他的皆為 true
- 字串 如果是空字串
''
則轉換為 false,其他的皆為 true
if ([0] && []) { // true // 陣列(即使為空)為一個物件,所以轉換為 true }
-
15.3 使用簡短的方式。
// bad if (name !== '') { // ...stuff... } // good if (name) { // ...stuff... } // bad if (collection.length > 0) { // ...stuff... } // good if (collection.length) { // ...stuff... }
-
15.4 想瞭解更多訊息請參考 Angus Croll 的 Truth Equality and JavaScript。
-
15.5 Use braces to create blocks in
case
anddefault
clauses that contain lexical declarations (e.g.let
,const
,function
, andclass
). -
15.6 若
case
與default
包含了宣告語法(例如:let
、const
、function
及class
)時使用大括號來建立區塊。Why? Lexical declarations are visible in the entire
switch
block but only get initialized when assigned, which only happens when itscase
is reached. This causes problems when multiplecase
clauses attempt to define the same thing. 為什麼?宣告語法可以在整個switch
區塊中可見,但是只在進入該case
時初始化。當多個case
語法時會導致嘗試定義相同事情的問題。eslint rules:
no-case-declarations
.// bad switch (foo) { case 1: let x = 1; break; case 2: const y = 2; break; case 3: function f() {} break; default: class C {} } // good switch (foo) { case 1: { let x = 1; break; } case 2: { const y = 2; break; } case 3: { function f() {} break; } case 4: bar(); break; default: { class C {} } }
-
15.7 不應該使用巢狀的三元運算子,且通常應該使用單行來表示。
eslint rules:
no-nested-ternary
.// bad const foo = maybe1 > maybe2 ? "bar" : value1 > value2 ? "baz" : null; // better const maybeNull = value1 > value2 ? 'baz' : null; const foo = maybe1 > maybe2 ? 'bar' : maybeNull; // best const maybeNull = value1 > value2 ? 'baz' : null; const foo = maybe1 > maybe2 ? 'bar' : maybeNull;
-
15.8 避免不必要的三元運算子語法。
eslint rules:
no-unneeded-ternary
.// bad const foo = a ? a : b; const bar = c ? true : false; const baz = c ? false : true; // good const foo = a || b; const bar = !!c; const baz = !c;
-
16.1 多行區塊請使用大括號刮起來。
// bad if (test) return false; // good if (test) return false; // good if (test) { return false; } // bad function foo() { return false; } // good function bar() { return false; }
-
16.2 如果你使用
if
及else
的多行區塊,請將else
放在if
區塊的結尾大括號後。eslint:brace-style
jscs:disallowNewlineBeforeBlockStatements
// bad if (test) { thing1(); thing2(); } else { thing3(); } // good if (test) { thing1(); thing2(); } else { thing3(); }
-
17.1 為避免控制陳述式(
if
、while
等)太長或超過該行字數限制,每組條件式可自成一行。邏輯運算子應置於行首。為什麼?行首的運算子可維持版面整齊,遵守和方法鏈類似的排版模式。還能提供視覺線索,讓複雜的邏輯述句更容易閱讀。
// bad if ((foo === 123 || bar === 'abc') && doesItLookGoodWhenItBecomesThatLong() && isThisReallyHappening()) { thing1(); } // bad if (foo === 123 && bar === 'abc') { thing1(); } // bad if (foo === 123 && bar === 'abc') { thing1(); } // bad if ( foo === 123 && bar === 'abc' ) { thing1(); } // good if ( foo === 123 && bar === 'abc' ) { thing1(); } // good if ( (foo === 123 || bar === 'abc') && doesItLookGoodWhenItBecomesThatLong() && isThisReallyHappening() ) { thing1(); } // good if (foo === 123 && bar === 'abc') { thing1(); }
-
17.2 不要用選擇運算子(selection operators)來取代控制陳述式。
// bad !isRunning && startRunning(); // good if (!isRunning) { startRunning(); }
-
18.1 多行註解請使用
/** ... */
,包含描述,指定類型以及參數值還有回傳值。// bad // make() 根據傳入的 tag 名稱回傳一個新的元件 // // @param {String} tag // @return {Element} element function make(tag) { // ...stuff... return element; } // good /** * make() 根據傳入的 tag 名稱回傳一個新的元件 * * @param {String} tag * @return {Element} element */ function make(tag) { // ...stuff... return element; }
-
18.2 單行註解請使用
//
。在欲註解的上方新增一行進行註解。在註解的上方空一行,除非他在區塊的第一行。// bad const active = true; // 當目前分頁 // good // is current tab const active = true; // bad function getType() { console.log('fetching type...'); // 設定預設的類型為 'no type' const type = this._type || 'no type'; return type; } // good function getType() { console.log('fetching type...'); // 設定預設的類型為 'no type' const type = this._type || 'no type'; return type; } // also good function getType() { // set the default type to 'no type' const type = this._type || 'no type'; return type; }
-
18.3 在註解前方加上
FIXME
或TODO
可以幫助其他開發人員快速瞭解這是一個需要重新討論的問題,或是一個等待解決的問題。和一般的註解不同,他們是可被執行的。對應的動作為FIXME -- 重新討論並解決
或TODO -- 必須執行
。 -
18.4 使用
// FIXME:
標注問題。class Calculator extends Abacus { constructor() { super(); // FIXME: 不該在這使用全域變數 total = 0; } }
-
18.5 使用
// TODO:
標注問題的解決方式。class Calculator extends Abacus { constructor() { super(); // TODO: total 應該可被傳入的參數所修改 this.total = 0; } }
-
19.1 將 Tab 設定為兩個空格。eslint:
indent
jscs:validateIndentation
// bad function foo() { ∙∙∙∙const name; } // bad function bar() { ∙const name; } // good function baz() { ∙∙const name; }
-
19.2 在大括號前加一個空格。eslint:
space-before-blocks
jscs:requireSpaceBeforeBlockStatements
// bad function test(){ console.log('test'); } // good function test() { console.log('test'); } // bad dog.set('attr',{ age: '1 year', breed: 'Bernese Mountain Dog', }); // good dog.set('attr', { age: '1 year', breed: 'Bernese Mountain Dog', });
-
19.3 在控制流程的語句(
if
,while
等等。)的左括號前加上一個空格。宣告的函式和傳入的變數間則沒有空格。eslint:space-after-keywords
,space-before-keywords
jscs:requireSpaceAfterKeywords
// bad if(isJedi) { fight (); } // good if (isJedi) { fight(); } // bad function fight () { console.log ('Swooosh!'); } // good function fight() { console.log('Swooosh!'); }
-
19.4 將運算元用空格隔開。eslint:
space-infix-ops
jscs:requireSpaceBeforeBinaryOperators
,requireSpaceAfterBinaryOperators
// bad const x=y+5; // good const x = y + 5;
-
19.5 在檔案的最尾端加上一行空白行。
// bad (function (global) { // ...stuff... })(this);
// bad (function (global) { // ...stuff... })(this);↵ ↵
// good (function (global) { // ...stuff... })(this);↵
-
19.6 當多個方法鏈結(大於兩個方法鏈結)時請換行縮排。利用前面的
.
強調該行是呼叫方法,而不是一個新的宣告。eslint:newline-per-chained-call
no-whitespace-before-property
// bad $('#items').find('.selected').highlight().end().find('.open').updateCount(); // bad $('#items'). find('.selected'). highlight(). end(). find('.open'). updateCount(); // good $('#items') .find('.selected') .highlight() .end() .find('.open') .updateCount(); // bad const leds = stage.selectAll('.led').data(data).enter().append('svg:svg').classed('led', true) .attr('width', (radius + margin) * 2).append('svg:g') .attr('transform', 'translate(' + (radius + margin) + ',' + (radius + margin) + ')') .call(tron.led); // good const leds = stage.selectAll('.led') .data(data) .enter().append('svg:svg') .classed('led', true) .attr('width', (radius + margin) * 2) .append('svg:g') .attr('transform', 'translate(' + (radius + margin) + ',' + (radius + margin) + ')') .call(tron.led); // good const leds = stage.selectAll('.led').data(data);
-
19.7 在區塊的結束及下個語法間加上空行。jscs:
requirePaddingNewLinesAfterBlocks
// bad if (foo) { return bar; } return baz; // good if (foo) { return bar; } return baz; // bad const obj = { foo() { }, bar() { }, }; return obj; // good const obj = { foo() { }, bar() { }, }; return obj; // bad const arr = [ function foo() { }, function bar() { }, ]; return arr; // good const arr = [ function foo() { }, function bar() { }, ]; return arr;
-
19.8 別在區塊中置放空行。eslint:
padded-blocks
jscs:disallowPaddingNewlinesInBlocks
// bad function bar() { console.log(foo); } // also bad if (baz) { console.log(qux); } else { console.log(foo); } // good function bar() { console.log(foo); } // good if (baz) { console.log(qux); } else { console.log(foo); }
-
19.9 不要在括號內的兩側置放空格。eslint:
space-in-parens
jscs:disallowSpacesInsideParentheses
// bad function bar( foo ) { return foo; } // good function bar(foo) { return foo; } // bad if ( foo ) { console.log(foo); } // good if (foo) { console.log(foo); }
-
19.10 不要在中括號內的兩側置放空格。eslint:
array-bracket-spacing
jscs:disallowSpacesInsideArrayBrackets
// bad const foo = [ 1, 2, 3 ]; console.log(foo[ 0 ]); // good const foo = [1, 2, 3]; console.log(foo[0]);
-
19.11 在大括號內的兩側置放空格。eslint:
object-curly-spacing
jscs: [disallowSpacesInsideObjectBrackets
](http://jscs.info/rule/// bad const foo = {clark: 'kent'}; // good const foo = { clark: 'kent' };
-
19.12 避免一行的程式碼超過 100 字元(包含空白)。eslint:
max-len
jscs:maximumLineLength
為什麼?這樣確保可讀性及維護性。
// bad const foo = 'Whatever national crop flips the window. The cartoon reverts within the screw. Whatever wizard constrains a helpful ally. The counterpart ascends!'; // bad $.ajax({ method: 'POST', url: 'https://airbnb.com/', data: { name: 'John' } }).done(() => console.log('Congratulations!')).fail(() => console.log('You have failed this city.')); // good const foo = 'Whatever national crop flips the window. The cartoon reverts within the screw. ' + 'Whatever wizard constrains a helpful ally. The counterpart ascends!'; // good $.ajax({ method: 'POST', url: 'https://airbnb.com/', data: { name: 'John' }, }) .done(() => console.log('Congratulations!')) .fail(() => console.log('You have failed this city.'));
-
20.1 不要將逗號放在前方。eslint:
comma-style
jscs:requireCommaBeforeLineBreak
// bad const story = [ once , upon , aTime ]; // good const story = [ once, upon, aTime, ]; // bad const hero = { firstName: 'Ada' , lastName: 'Lovelace' , birthYear: 1815 , superPower: 'computers' }; // good const hero = { firstName: 'Ada', lastName: 'Lovelace', birthYear: 1815, superPower: 'computers', };
-
20.2 增加結尾的逗號:別懷疑eslint:
comma-dangle
jscs:requireTrailingComma
為什麼?這會讓 Git 的差異列表更乾淨。另外,Babel 轉譯器也會刪除結尾多餘的逗號,也就是說你完全不需要擔心在老舊的瀏覽器發生多餘逗號的問題。
// bad - 不含多餘逗號的 git 差異列表 const hero = { firstName: 'Florence', - lastName: 'Nightingale' + lastName: 'Nightingale', + inventorOf: ['coxcomb graph', 'modern nursing'] }; // good - 包含多餘逗號的 git 差異列表 const hero = { firstName: 'Florence', lastName: 'Nightingale', + inventorOf: ['coxcomb chart', 'modern nursing'], }; // bad const hero = { firstName: 'Dana', lastName: 'Scully' }; const heroes = [ 'Batman', 'Superman' ]; // good const hero = { firstName: 'Dana', lastName: 'Scully', }; const heroes = [ 'Batman', 'Superman', ];
-
21.1 **對啦。**eslint:
semi
jscs:requireSemicolons
// bad (function () { const name = 'Skywalker' return name })() // good (() => { const name = 'Skywalker'; return name; }()); // good(防止當兩個檔案含有立即函式需要合併時,函式被當成參數處理) ;(() => { const name = 'Skywalker'; return name; }());
瞭解更多。
-
22.1 在開頭的宣告進行強制型別轉換。
-
22.2 字串:
// => this.reviewScore = 9; // bad const totalScore = this.reviewScore + ''; // good const totalScore = String(this.reviewScore);
-
22.3 數字:使用
Number
做型別轉換,而parseInt
則始終以基數解析字串。eslint:radix
const inputValue = '4'; // bad const val = new Number(inputValue); // bad const val = +inputValue; // bad const val = inputValue >> 0; // bad const val = parseInt(inputValue); // good const val = Number(inputValue); // good const val = parseInt(inputValue, 10);
-
22.4 如果你因為某個原因在做些瘋狂的事情,但是
parseInt
是你的瓶頸,所以你對於性能方面的原因而必須使用位元右移,請留下評論並解釋為什麼使用,及你做了哪些事情。// good /** * 使用 parseInt 導致我的程式變慢,改成使用 * 位元右移強制將字串轉為數字加快了他的速度。 */ const val = inputValue >> 0;
-
22.5 **注意:**使用位元轉換時請小心。數字為 64 位元數值,但是使用位元轉換時則會回傳一個 32 位元的整數(來源),這會導致大於 32 位元的數值產生異常 討論串,32 位元的整數最大值為 2,147,483,647:
2147483647 >> 0 //=> 2147483647 2147483648 >> 0 //=> -2147483648 2147483649 >> 0 //=> -2147483647
-
22.6 布林:
const age = 0; // bad const hasAge = new Boolean(age); // good const hasAge = Boolean(age); // good const hasAge = !!age;
-
23.1 避免使用單一字母的名稱,讓你的名稱有解釋的含義。
// bad function q() { // ...stuff... } // good function query() { // ..stuff.. }
-
23.2 使用駝峰式大小寫命名物件,函式及實例。eslint:
camelcase
jscs:requireCamelCaseOrUpperCaseIdentifiers
// bad const OBJEcttsssss = {}; const this_is_my_object = {}; function c() {} // good const thisIsMyObject = {}; function thisIsMyFunction() {}
-
23.3 使用帕斯卡命名法來命名建構子或類別。eslint:
new-cap
jscs:requireCapitalizedConstructors
// bad function user(options) { this.name = options.name; } const bad = new user({ name: 'nope', }); // good class User { constructor(options) { this.name = options.name; } } const good = new User({ name: 'yup', });
-
23.4 命名私有屬性時請在前面加底線
_
。eslint:no-underscore-dangle
jscs:disallowDanglingUnderscores
// bad this.__firstName__ = 'Panda'; this.firstName_ = 'Panda'; // good this._firstName = 'Panda';
-
23.5 請別儲存
this
為參考。請使用箭頭函式或是 Function#bind。jscs:disallowNodeTypes
// bad function foo() { const self = this; return function () { console.log(self); }; } // bad function foo() { const that = this; return function () { console.log(that); }; } // good function foo() { return () => { console.log(this); }; }
-
23.6 如果你的檔案只有輸出一個類別,你的檔案名稱必須和你的類別名稱相同。
// 檔案內容 class CheckBox { // ... } export default CheckBox; // 在其他的檔案 // bad import CheckBox from './checkBox'; // bad import CheckBox from './check_box'; // good import CheckBox from './CheckBox';
-
23.7 當你導出為預設的函式時請使用駝峰式大小寫。檔案名稱必須與你的函式名稱一致。
function makeStyleGuide() { } export default makeStyleGuide;
-
23.8 當你導出為單例 / 函式庫 / 空物件時請使用帕斯卡命名法。
const AirbnbStyleGuide = { es6: { } }; export default AirbnbStyleGuide;
-
24.1 屬性的存取器函式不是必須的。
-
24.2 別使用 JavaScript 的 getters 或 setters,因為它們會導致意想不到的副作用,而且不易於測試、維護以及進行推測。取而代之,如果你要建立一個存取器函式,請使用 getVal() 及 setVal('hello')。
// bad dragon.age(); // good dragon.getAge(); // bad dragon.age(25); // good dragon.setAge(25);
-
24.3 如果屬性是布林,請使用
isVal()
或hasVal()
。// bad if (!dragon.age()) { return false; } // good if (!dragon.hasAge()) { return false; }
-
24.4 可以建立 get() 及 set() 函式,但請保持一致。
class Jedi { constructor(options = {}) { const lightsaber = options.lightsaber || 'blue'; this.set('lightsaber', lightsaber); } set(key, val) { this[key] = val; } get(key) { return this[key]; } }
-
25.1 當需要對事件傳入資料時(不論是 DOM 事件或是其他私有事件),請傳入物件替代單一的資料。這樣可以使之後的開發人員直接加入其他的資料到事件裡,而不需更新該事件的處理器。例如,比較不好的做法:
// bad $(this).trigger('listingUpdated', listing.id); ... $(this).on('listingUpdated', (e, listingId) => { // do something with listingId });
更好的做法:
// good $(this).trigger('listingUpdated', { listingId: listing.id }); ... $(this).on('listingUpdated', (e, data) => { // do something with data.listingId });
-
26.1 jQuery 的物件請使用
$
當前綴。jscs:requireDollarBeforejQueryAssignment
// bad const sidebar = $('.sidebar'); // good const $sidebar = $('.sidebar'); // good const $sidebarBtn = $('.sidebar-btn');
-
26.2 快取 jQuery 的查詢。
// bad function setSidebar() { $('.sidebar').hide(); // ...stuff... $('.sidebar').css({ 'background-color': 'pink' }); } // good function setSidebar() { const $sidebar = $('.sidebar'); $sidebar.hide(); // ...stuff... $sidebar.css({ 'background-color': 'pink' }); }
-
26.3 DOM 的查詢請使用層遞的
$('.sidebar ul')
或 父元素 > 子元素$('.sidebar > ul')
。jsPerf -
26.4 對作用域內的 jQuery 物件使用
find
做查詢。// bad $('ul', '.sidebar').hide(); // bad $('.sidebar').find('ul').hide(); // good $('.sidebar ul').hide(); // good $('.sidebar > ul').hide(); // good $sidebar.find('ul').hide();
- 28.1 以下是連結到各個 ES6 特性的列表。
標準程式庫(Standard Library)基於歷史因素,仍保有某些功能有缺陷的函式。
-
29.1 使用
Number.isNaN
而非isNaN
。為什麼?全域函式
isNaN
會先將任何非數值轉換為數值,如果轉換後之值為 NaN,則函式回傳 true。 若真要轉換為數值,請表達清楚。// bad isNaN('1.2'); // false isNaN('1.2.3'); // true // good Number.isNaN('1.2.3'); // false Number.isNaN(Number('1.2.3')); // true
-
29.2 使用
Number.isFinite
而非isFinite
。為什麼?全域函式
isFinite
會先將任何非數值轉換為數值,如果轉換後之值有限,則函式回傳 true。 若真要轉換為數值,請表達清楚。// bad isFinite('2e3'); // true // good Number.isFinite('2e3'); // false Number.isFinite(parseInt('2e3', 10)); // true
- On Layout & Web Performance
- String vs Array Concat
- Try/Catch Cost In a Loop
- Bang Function
- jQuery Find vs Context, Selector
- innerHTML vs textContent for script text
- Long String Concatenation
- Loading...
學習 ES6
- Draft ECMA 2015 (ES6) Spec
- ExploringJS
- ES6 Compatibility Table
- Comprehensive Overview of ES6 Features
請讀這個
工具
- Code Style Linters
其他的風格指南
- Google JavaScript Style Guide
- jQuery Core Style Guidelines
- Principles of Writing Consistent, Idiomatic JavaScript
其他風格
- Naming this in nested functions - Christian Johansen
- Conditional Callbacks - Ross Allen
- Popular JavaScript Coding Conventions on Github - JeongHoon Byun
- Multiple var statements in JavaScript, not superfluous - Ben Alman
瞭解更多
- Understanding JavaScript Closures - Angus Croll
- Basic JavaScript for the impatient programmer - Dr. Axel Rauschmayer
- You Might Not Need jQuery - Zack Bloom & Adam Schwartz
- ES6 Features - Luke Hoban
- Frontend Guidelines - Benjamin De Cock
書籍
- JavaScript: The Good Parts - Douglas Crockford
- JavaScript Patterns - Stoyan Stefanov
- Pro JavaScript Design Patterns - Ross Harmes and Dustin Diaz
- High Performance Web Sites: Essential Knowledge for Front-End Engineers - Steve Souders
- Maintainable JavaScript - Nicholas C. Zakas
- JavaScript Web Applications - Alex MacCaw
- Pro JavaScript Techniques - John Resig
- Smashing Node.js: JavaScript Everywhere - Guillermo Rauch
- Secrets of the JavaScript Ninja - John Resig and Bear Bibeault
- Human JavaScript - Henrik Joreteg
- Superhero.js - Kim Joar Bekkelund, Mads Mobæk, & Olav Bjorkoy
- JSBooks - Julien Bouquillon
- Third Party JavaScript - Ben Vinegar and Anton Kovalyov
- Effective JavaScript: 68 Specific Ways to Harness the Power of JavaScript - David Herman
- Eloquent JavaScript - Marijn Haverbeke
- You Don't Know JS: ES6 & Beyond - Kyle Simpson
部落格
- DailyJS
- JavaScript Weekly
- JavaScript, JavaScript...
- Bocoup Weblog
- Adequately Good
- NCZOnline
- Perfection Kills
- Ben Alman
- Dmitry Baranovskiy
- Dustin Diaz
- nettuts
Podcasts
這是正在使用這份風格指南的組織列表。送一個 pull request 後我們會將你增加到列表上。
- Aan Zee: AanZee/javascript
- Adult Swim: adult-swim/javascript
- Airbnb: airbnb/javascript
- Apartmint: apartmint/javascript
- Avalara: avalara/javascript
- Avant: avantcredit/javascript
- Billabong: billabong/javascript
- Bisk: bisk/javascript
- Blendle: blendle/javascript
- Brainshark: brainshark/javascript
- ComparaOnline: comparaonline/javascript
- Compass Learning: compasslearning/javascript-style-guide
- DailyMotion: dailymotion/javascript
- Digitpaint digitpaint/javascript
- Ecosia: ecosia/javascript
- Evernote: evernote/javascript-style-guide
- Evolution Gaming: evolution-gaming/javascript
- ExactTarget: ExactTarget/javascript
- Expensify Expensify/Style-Guide
- Flexberry: Flexberry/javascript-style-guide
- Gawker Media: gawkermedia/javascript
- General Electric: GeneralElectric/javascript
- GoodData: gooddata/gdc-js-style
- Grooveshark: grooveshark/javascript
- How About We: howaboutwe/javascript
- Huballin: huballin/javascript
- HubSpot: HubSpot/javascript
- Hyper: hyperoslo/javascript-playbook
- InfoJobs: InfoJobs/JavaScript-Style-Guide
- Intent Media: intentmedia/javascript
- Jam3: Jam3/Javascript-Code-Conventions
- JeopardyBot: kesne/jeopardy-bot
- JSSolutions: JSSolutions/javascript
- Kinetica Solutions: kinetica/javascript
- Mighty Spring: mightyspring/javascript
- MinnPost: MinnPost/javascript
- MitocGroup: MitocGroup/javascript
- ModCloth: modcloth/javascript
- Money Advice Service: moneyadviceservice/javascript
- Muber: muber/javascript
- National Geographic: natgeo/javascript
- National Park Service: nationalparkservice/javascript
- Nimbl3: nimbl3/javascript
- Orion Health: orionhealth/javascript
- OutBoxSoft: OutBoxSoft/javascript
- Peerby: Peerby/javascript
- Razorfish: razorfish/javascript-style-guide
- reddit: reddit/styleguide/javascript
- React: /facebook/react/blob/master/CONTRIBUTING.md#style-guide
- REI: reidev/js-style-guide
- Ripple: ripple/javascript-style-guide
- SeekingAlpha: seekingalpha/javascript-style-guide
- Shutterfly: shutterfly/javascript
- Springload: springload/javascript
- StudentSphere: studentsphere/javascript
- Target: target/javascript
- TheLadders: TheLadders/javascript
- T4R Technology: T4R-Technology/javascript
- VoxFeed: VoxFeed/javascript-style-guide
- WeBox Studio: weboxstudio/javascript
- Weggo: Weggo/javascript
- Zillow: zillow/javascript
- ZocDoc: ZocDoc/javascript
This style guide is also available in other languages:
- Brazilian Portuguese: armoucar/javascript-style-guide
- Bulgarian: borislavvv/javascript
- Catalan: fpmweb/javascript-style-guide
- Chinese (Simplified): sivan/javascript-style-guide
- Chinese (Traditional): jigsawye/javascript
- French: nmussy/javascript-style-guide
- German: timofurrer/javascript-style-guide
- Italian: sinkswim/javascript-style-guide
- Japanese: mitsuruog/javacript-style-guide
- Korean: tipjs/javascript-style-guide
- Polish: mjurczyk/javascript
- Russian: uprock/javascript
- Spanish: paolocarrasco/javascript-style-guide
- Thai: lvarayut/javascript-style-guide
- Find us on gitter.
(The MIT License)
Copyright (c) 2014-2016 Airbnb
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the 'Software'), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
We encourage you to fork this guide and change the rules to fit your team's style guide. Below, you may list some amendments to the style guide. This allows you to periodically update your style guide without having to deal with merge conflicts.