-
Notifications
You must be signed in to change notification settings - Fork 0
Open
Labels
Description
Invalid code samples 👎
function doSomething() {
}
export function doOtherThing() {
doSomething();
}const doSomething = () => {
};
export function doOtherThing() {
doSomething();
}function doSomething() {
}
export class MyClass() {
public doAll() {
doSomething();
}
}Valid code samples 👍
export function doOtherThing() {
doSomething();
}
function doSomething() {
}export class MyClass() {
public doAll() {
doSomething();
}
}
function doSomething() {
}const MY_CONST = '';
const MY_CONST_LIST = [];
export class MyClass(){
public doAll() {
doSomething();
}
}
function doSomething(){
}Reactions are currently unavailable