// bad
function q() {
// ...
}
// good
function query() {
// ...
}
// bad
this.__firstName__ = 'Panda';
this.firstName_ = 'Panda';
this._firstName = 'Panda';
// good
this.firstName = 'Panda';
// bad
function foo() {
const self = this;
return function () {
console.log(self);
};
}
// good
function bar() {
return () => {
console.log(this);
};
}
// bad
import SmsContainer from './containers/SmsContainer';
// bad
const HttpRequests = [
// ...
];
// good
import SMSContainer from './containers/SMSContainer';
// good
const HTTPRequests = [
// ...
];
// also good
const httpRequests = [
// ...
];
// best
import TextMessageContainer from './containers/TextMessageContainer';
// best
const requests = [
// ...
];
// bad
const PRIVATE_VARIABLE = 'should not be unnecessarily uppercased within a file';
// bad
export const THING_TO_BE_CHANGED = 'should obviously not be uppercased';
// bad
export let REASSIGNABLE_VARIABLE = 'do not use let with uppercase variables';
// ---
// allowed but does not supply semantic value
export const apiKey = 'SOMEKEY';
// better in most cases
export const API_KEY = 'SOMEKEY';
// ---
// bad - unnecessarily uppercases key while adding no semantic value
export const MAPPING = {
KEY: 'value'
};
// good
export const MAPPING = {
key: 'value'
};
//bad
let delivery_notes = ["one", "two"];
// good
let delivery_note_list = ["one", "two"];
//bad
let del_note = 1;
// good
let delivery_note = 1;
// bad
LonDon.png
HELLOWORLD.pdf
APP.js
// good
london.png
helloworld.pdf
app.js
// bad
my.examplecode.deepspace
my.example_code.deep_space
// good
my.exampleCode.deepSpace
// file 1 contents
class CheckBox {
// ...
}
export default CheckBox;
// file 2 contents
export default function fortyTwo() { return 42; }
// file 3 contents
export default function insideDirectory() {}
// in some other file
// bad
import CheckBox from './checkBox'; // PascalCase import/export, camelCase filename
import FortyTwo from './FortyTwo'; // PascalCase import/filename, camelCase export
import InsideDirectory from './InsideDirectory'; // PascalCase import/filename, camelCase export
// bad
import CheckBox from './check_box'; // PascalCase import/export, snake_case filename
import forty_two from './forty_two'; // snake_case import/filename, camelCase export
import inside_directory from './inside_directory'; // snake_case import, camelCase export
import index from './inside_directory/index'; // requiring the index file explicitly
import insideDirectory from './insideDirectory/index'; // requiring the index file explicitly
// good
import CheckBox from './CheckBox'; // PascalCase export/import/filename
import fortyTwo from './fortyTwo'; // camelCase export/import/filename
import insideDirectory from './insideDirectory'; // camelCase export/import/directory name/implicit "index"
// ^ supports both insideDirectory.js and insideDirectory/index.js
변수의 이름은 lowerCamelCase로 표기한다.
단, export되는 파일 내의 상수는 예외.
변수의 이름은 알파벳으로 시작해야한다.
// bad
let 123Number = 123;
let HELLO_WORLD = "Hello World";
// good
let number = 369;
let helloString = "Hello World";
// bad
function MyFunction() {...}
// good
function myFunction() {...}
// bad
function whereIsCamera() { ... }
// good
function findCamera() { ... }
function getFoo() { ... } // getter
function setBar() { ... } // setter
function hasCoo() { ... } // booleans
function makeStyleGuide() {
// ...
}
export default makeStyleGuide;
함수 라이브러리를 export할 때는 PascalCase로 표기한다.
함수의 파라미터는 lowerCamelCase로 표기한다.
단, 한글자의 파라미터는 public 메소드에서는 사용하지 않는다.
// bad
function someFunction(SOMEVALUE, SOMEARRAY) { ... }
// good
function someFunction(someValue, someArray) { ... }
// bad
const OBJEcttsssss = {};
const this_is_my_object = {};
function c() {}
// good
const thisIsMyObject = {};
function thisIsMyFunction() {}
const AirbnbStyleGuide = {
es6: {
},
};
export default AirbnbStyleGuide;
// 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',
});
클래스의 이름은 명사 또는 명사구문으로 표기한다.
또한, 인터페이스의 경우 명사 대신 형용사 또는 형용사구문으로 표기할 수 있다.
클래스를 export할 때는 PascalCase로 표기한다.