Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 9ca6e15

Browse files
committed
added prettier + eslint-airbnb eslint support
1 parent 1c03673 commit 9ca6e15

File tree

11 files changed

+1692
-70
lines changed

11 files changed

+1692
-70
lines changed

homework/.eslintrc

Lines changed: 0 additions & 47 deletions
This file was deleted.

homework/.eslintrc.json

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
{
2+
"extends": ["airbnb", "prettier"],
3+
"plugins": ["prettier"],
4+
"env": {
5+
"browser": true
6+
},
7+
"rules": {
8+
"prettier/prettier": ["error"],
9+
"class-methods-use-this": "off",
10+
"no-console": "off",
11+
"strict": "off"
12+
}
13+
}

0 commit comments

Comments
 (0)