1
0
mirror of https://github.com/theoludwig/eslint-config-conventions.git synced 2026-05-06 13:48:09 +02:00

chore: initial commit

This commit is contained in:
Divlo
2022-02-19 16:05:21 +01:00
commit b79a5fbcb0
38 changed files with 17334 additions and 0 deletions
+5
View File
@@ -0,0 +1,5 @@
const foo = 1
const bar = (argument) => {
return argument + foo
}
bar(foo)
+1
View File
@@ -0,0 +1 @@
'invalid eqeqeq' == 'invalid eqeqeq'
+3
View File
@@ -0,0 +1,3 @@
const foo = await 1
const bar = function () {}
await bar(foo)
+5
View File
@@ -0,0 +1,5 @@
const foo = 1
const bar = (argument: number): number => {
return argument + foo
}
bar(foo)
+5
View File
@@ -0,0 +1,5 @@
const foo = 1
const bar = (argument: number) => {
return argument + foo
}
bar(foo)