react-native-circles
Version:
React Native multi progress ring and arc component
48 lines (47 loc) • 1.09 kB
Plain Text
{
"parser": "babel-eslint",
"env": {
"browser": true,
"react-native-globals/all": true
},
"plugins": ["react", "react-native", "react-native-globals"],
"extends": [
"eslint:recommended",
"plugin:react/recommended",
"plugin:react-native/all"
],
"rules": {
"no-console": 0,
"no-sequences": 2,
"semi": 2,
"curly": 2,
"no-eval": 2,
"no-extend-native": 2,
"no-new-wrappers": 2,
"no-with": 2,
"no-var": 2,
"comma-dangle": [
"error",
{
"arrays": "always-multiline",
"objects": "always-multiline",
"imports": "always-multiline",
"exports": "always-multiline",
"functions": "ignore"
}
],
"react/no-access-state-in-setstate": 2,
"react/no-array-index-key": 2,
"react/no-did-mount-set-state": 2,
"react/no-did-update-set-state": 2,
"react/no-direct-mutation-state": 2,
"react/jsx-no-bind": 1,
"react/prop-types": 2,
"react/jsx-boolean-value": 2
},
"globals": {
"__DEV__": true,
"Promise": true,
"require": true
}
}