-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path.eslintrc
32 lines (32 loc) · 820 Bytes
/
.eslintrc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
{
"env": {
"browser": true,
"es6": true
},
"ecmaFeatures": {
"modules": true
},
"plugins": [
"format-message"
],
"rules": {
"strict": 0,
"format-message/literal-pattern": 2,
"format-message/literal-locale": 2,
"format-message/no-identical-translation": 0,
"format-message/no-invalid-pattern": 2,
"format-message/no-invalid-translation": 2,
"format-message/no-missing-params": [ 2, { allowNonLiteral: true } ],
"format-message/no-missing-translation": 0,
"format-message/translation-match-params": 2,
"react/jsx-curly-spacing": [ 2, "always" ]
},
"settings": {
"format-message": {
"sourceLocale": "en",
"generateId": "underscored_crc32",
"translations": "./locales"
}
},
"extends": [ "standard", "standard-react" ]
}