aboutsummaryrefslogtreecommitdiff
path: root/eslintrc.js
blob: 477d02139dca13f6521968014fa9f43fa70c4092 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
module.exports = {
  'root': true,
  'extends': 'airbnb-base',
  'globals': {
    'window': true,
    'document': true,
    'jQuery': false,
    '$': true,
    'Foundation': true
  },
  'rules': {
    'max-len': ['error', 120]
  }
}