Michael Lando | efa037d | 2017-02-19 12:57:33 +0200 | [diff] [blame] | 1 | { |
2 | "parserOptions": { | ||||
3 | "ecmaVersion": 6, | ||||
4 | "sourceType": "module", | ||||
5 | "ecmaFeatures": { | ||||
6 | "jsx": true | ||||
7 | } | ||||
8 | }, | ||||
9 | "env": { | ||||
10 | "browser": true | ||||
11 | }, | ||||
12 | "plugins": [ | ||||
13 | "react" | ||||
14 | ], | ||||
15 | "extends": [ | ||||
16 | "airbnb" | ||||
17 | ], | ||||
18 | "rules": { | ||||
19 | "padded-blocks": 0, | ||||
20 | "max-len": ["error", 160, 4], | ||||
21 | "no-underscore-dangle": 0, | ||||
22 | "global-require": 0, | ||||
23 | "react/sort-comp": 0, | ||||
24 | "new-cap": 0 | ||||
25 | }, | ||||
26 | "settings": { | ||||
27 | "react": { | ||||
28 | "pragma": "React", | ||||
29 | "version": "0.14.8" | ||||
30 | } | ||||
31 | } | ||||
32 | } |