refactor: move eslint-config to monorepo

This commit is contained in:
2023-03-14 17:32:57 +01:00
parent 1547eab6a1
commit 0a37c252e3
12 changed files with 0 additions and 0 deletions

View File

@@ -0,0 +1,12 @@
/**
* Simple TS source file to get linted
* Can be used to verify new/changed rule behavior
*/
function addNumbers(a: number, b: number) {
return a + b;
}
const sum: number = addNumbers(10, 15);
// eslint-disable-next-line no-console
console.log('Sum of the two numbers is: ' + sum);