Skip to content

Commit 3e53ac0

Browse files
author
Rob Whittaker
committed
Add ESLint Hound configuration
Before, Hound had its own default ESLint configuration. We are moving these configurations into specific organisations. Added a thoughtbot-specific Hound configuration for ES6 files. https://trello.com/c/HY2hoTdq
1 parent 46d3908 commit 3e53ac0

File tree

2 files changed

+11
-0
lines changed

2 files changed

+11
-0
lines changed

.hound.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
11
coffeescript:
22
enabled: true
33
config_file: style/coffeescript/coffeelint.json
4+
eslint:
5+
enabled: true
6+
config_file: style/eslint/.eslintrc
47
haml:
58
enabled: true
69
config_file: style/haml/haml.yml

style/eslint/.eslintrc

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
{
2+
"rules": {},
3+
"env": {
4+
"es6": true,
5+
"browser": true
6+
},
7+
"extends": "eslint:recommended"
8+
}

0 commit comments

Comments
 (0)