mirror of
https://github.com/zhigang1992/react-native-vector-icons.git
synced 2026-04-30 13:12:42 +08:00
19 lines
588 B
Plaintext
19 lines
588 B
Plaintext
{
|
|
"extends": "airbnb",
|
|
"parser": "babel-eslint",
|
|
"rules": {
|
|
"react/jsx-filename-extension": [1, { "extensions": [".js", ".jsx"] }],
|
|
"import/no-extraneous-dependencies": [0],
|
|
"import/no-unresolved": [2, { ignore: ['^react(-native)?$'] }],
|
|
"import/extensions": [2, { "js": "never", "json": "always" }],
|
|
"arrow-parens": ["error", "as-needed"],
|
|
"comma-dangle": ["error", {
|
|
"arrays": "always-multiline",
|
|
"objects": "always-multiline",
|
|
"imports": "always-multiline",
|
|
"exports": "always-multiline",
|
|
"functions": "ignore",
|
|
}]
|
|
}
|
|
}
|