mirror of
https://github.com/zhigang1992/react-native-notifications.git
synced 2026-06-14 09:59:24 +08:00
38 lines
556 B
Plaintext
38 lines
556 B
Plaintext
{
|
|
"parser": "babel-eslint",
|
|
"env": {
|
|
"node": true,
|
|
"jest": true,
|
|
"es6": true
|
|
},
|
|
"extends": "eslint:recommended",
|
|
"rules": {
|
|
"indent": [
|
|
"error",
|
|
2
|
|
],
|
|
"linebreak-style": [
|
|
"error",
|
|
"unix"
|
|
],
|
|
"no-trailing-spaces": "error",
|
|
"quotes": [
|
|
"error",
|
|
"single"
|
|
],
|
|
"semi": [
|
|
"error",
|
|
"always"
|
|
],
|
|
"camelcase": [
|
|
"error",
|
|
{"properties": "always"}
|
|
],
|
|
"eqeqeq": [
|
|
"error",
|
|
"smart"
|
|
],
|
|
"no-console":0
|
|
}
|
|
}
|