Skip to content

Commit 3c672be

Browse files
authored
Reconfigure linters (#11)
1 parent 773308a commit 3c672be

File tree

92 files changed

+1409
-1259
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

92 files changed

+1409
-1259
lines changed

.prettierrc.json

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
{
2+
"singleQuote": true
3+
}

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
"pretty-quick": "^3.1.0"
1313
},
1414
"scripts": {
15-
"lint": "eslint --fix \"./**/*.js\"",
15+
"lint": "eslint \"./**/*.js\"",
1616
"pretty-quick": "pretty-quick",
1717
"test": "jest"
1818
},

src/algorithms/arrays/two_sum.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
export default function(nums, target) {
1+
export default function booHoo(nums, target) {
22
const map = {};
33

44
for (let i = 0; i < nums.length; i += 1) {

0 commit comments

Comments
 (0)